在使用ssm的时候,报了这个错
org.mybatis.spring.MyBatisSystemException:
nested exception is org.apache.ibatis.reflection.ReflectionException:
Error instantiating class com.vanke.storage.model.message.SmartCarMessage with invalid types () or values ().
Cause: java.lang.NoSuchMethodException: com.vanke.storage.model.message.SmartCarMessage.<init>()
报这个错一般的原因有如下几种:
1)Bean函数中的get/set方法与成员变量不一。
2)构造函数被重载过,但是没有空的构造函数。
3)最好不要使用简单类型,如int, long等,改用对象模式Integer, Long等。在写条件查询时会用到判断<if xxx != null > … </if>的
而我的报这个错的原因是因为没有空的构造函数,mybaties在映射时需要用到动态代理,而动态代理创建代理时需要用到实体类的空构造函数,所以会报这个错误。