MyBatis
「已注销」
书山有路勤为径,学海无涯苦作舟...
展开
-
[转载]MyBatis中的jdbcType
1.Mybatis JdbcType与Oracle、MySql数据类型对应列表 Mybatis JdbcType Oracle MySql JdbcType ARRAY JdbcType BIGINT BIGINT JdbcType BINARY JdbcType BIT ...转载 2017-12-16 00:31:00 · 391 阅读 · 0 评论 -
MyBatis中在插入数据后,对象立刻获取Id的方法
只列举最主要的部分 方法一(获取自增主键,拥有自增主键的数据库例如:MySQL) 在insert标签中,加入keyProperty和useGeneratedKeys两个属性: <!-- MySQL中获取主键并插入1 --> <insert id="insertUser" parameterType="user" keyProperty="userId"...原创 2018-06-25 17:50:00 · 13663 阅读 · 0 评论 -
MyBatis3.2.3在单独测试使用时,遇到了一个依赖cglib的错误。
org.apache.ibatis.exceptions.PersistenceException: ### Error building SqlSession. ### The error may exist in SQL Mapper Configuration ### Cause: org.apache.ibatis.builder.BuilderException: Error par...原创 2018-06-27 11:43:00 · 583 阅读 · 0 评论 -
MyBatis在操作Oracle数据库时,插入Null提示无效字符:1111
这是因为mybatis在解释null默认转换为数据Other类型,MySQL认识,但是Oracle不认识,所以报错。 Caused by: org.apache.ibatis.type.TypeException: Error setting null for parameter #3 with JdbcType OTHER . Try setting a different J...原创 2018-06-26 11:44:00 · 2402 阅读 · 0 评论