org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'userName' in 'class com.q18idc.Xxxx'
因为 mybatis 的代码生成插件,xml 文件是追加,如果你执行了两次生成的话,表的映射 xml 里的代码会生成两遍,所以就会报错
1
Error parsing Mapper XML. Cause: java.lang.IllegalArgumentException: Result Maps collection already contains value for com.q18idc.news.dao.SysLogMapper.BaseResultMap
解决方法:检查对应的 xml 文件中是否有两个相同的 BaseResultMap 结果集
3. jdbcType 写错了
1
Cause: org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enumconstant org.apache.ibatis.type.JdbcType.xxxxx
Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.q18idc.xxxx'. Cause: java.lang.ClassNotFoundException: Cannot find class: com.q18idc.xxxx
解决方法
检查配置文件中的 parameterType、或者 resultMap 节点中的 type 属性对应的类是否写错了。
5. 结果集 ID 写错了
1
org.apache.ibatis.builder.IncompleteElementException: Could not find result map com.q18idc.news.dao.UserMapper.BaseResultMap2
解决方法
检查 CRUD 对应 resultMap 属性名是否写错了
6. 找不到类中的 set 属性
1
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'userName' of 'class com.q18idc.Xxxx' with value '25' Cause: org.apache.ibatis.reflection.ReflectionException: There is no setter for property named 'userName' in 'class com.q18idc.Xxxx'
解决方法
检查 resultMap 节点中的,id 或者 result 节点中的 property 属性名是否写错了