Mybatis出现错误org.apache.ibatis.executor.ExecutorException: No constructor found in

Mybatis出现错误org.apache.ibatis.executor.ExecutorException: No constructor found in
错误显示没有发现构造器。
其实就是重写了构造器后,忘了补写一个默认的空参构造器了。此类的错误还经常出现在spring等这种大量使用反射的框架中。因为这些框架在调用反射的类后会默认调用默认的构造器

解决办法

给实体类添加空参构造器

上一篇:NYOJ题目124中位数


下一篇:三 MyBatis配置文件SqlMapCofing.xml(属性加载&类型别名配置&映射文件加载)