org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.csh.pojo.Student with invalid types (int,String,Teacher) or values (1,小明,秦老师)

出现的报错信息:

org.apache.ibatis.reflaction.ReflectionException:Error instantiating class with invalid types() or values()

 org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.csh.pojo.Student with invalid types (int,String,Teacher) or values (1,小明,秦老师)_第1张图片

 

 问题原因:

mybatis在初始化对象时,需要无参构造进行load属性,而我之前在做相关练习的时候,在实例代码中添加了有参构造

解决方案:

1) model中的get/set方法与成员变量不一。
2) 构造函数被重载过,但是没有空的构造函数。
3) 最好不要使用简单类型,如int, long等,改用对象模式Integer, Long等。在写条件查询时会用到判断

你可能感兴趣的:(org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.csh.pojo.Student with invalid types (int,String,Teacher) or values (1,小明,秦老师))