1. Mapped Statements collection already contains value for :statement 重复异常
java.lang.IllegalArgumentException: Mapped Statements collection already contains value for xin.amx50b.dao.ServiceStaffMapper.selectByServicesStatus
出现原因:
1. 配置mapper时出现id重复了
2. 配置mapper时mapper中的parameterType或resultType为空
1. There is no getter for property named ‘service_type’ in ‘class xin.amx50b.entity.Combo’
nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'service_type' in 'class xin.amx50b.entity.Combo'
出现场景:
在对一个对象做一对一关系的对象封装后插入数据时出现
排查过程:
1. 因为异常写明了‘service_type’字段没有getter(如果自己没调用过一般就是配置文件中的问题)
2. 但是我已经将它封装成对象了换成‘serviceType‘,而且我是自动生成的,如果不是命名问题一般是不会出现问题的。
3. 由此可以判断应该是xml中还有哪里原来调用‘service_type’没有改成‘serviceType‘。
4. 果然在<if test="service_type != null" >
等条件判断的地方没有该名字。
警示:在对一个字段进行对象封装时如果不是字段词不达意最好是不要去修改,给自己带来不必要的麻烦。