https://www.cnblogs.com/lixuwu/p/5916561.html
mybatis插入数据时处理为null的属性:
https://blog.youkuaiyun.com/zsz459520690/article/details/50086739
sqlserver数据库mybatis 插入空值时报错:
https://blog.youkuaiyun.com/fishernemo/article/details/27649233
当 IDENTITY_INSERT 设置为 OFF 时,不能为表 'tb_MyInvoices' 中的标识列插入显:
https://blog.youkuaiyun.com/yy3097/article/details/52797365
Error creating bean with name 'XXX': Injection of autowired dependencies failed解决办法:
https://blog.youkuaiyun.com/a411358606/article/details/54426424
org.xml.sax.SAXParseException 文档根元素 "mapper" 必须匹配 DOCTYPE 根 "configuration":
https://blog.youkuaiyun.com/testcs_dn/article/details/50317239
通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明:
https://blog.youkuaiyun.com/zq_zhang/article/details/79578235
作为自己知道的记录:
<insert id="insert" parameterType="com.scce.entity.Person" >
set identity_insert person on
<!-- id, -->
insert into person (id,name,password
)
<!-- #{id,jdbcType=INTEGER ,typeHandler=com.scce.util.DateTypeTranf}, -->
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}
)
</insert>