Myhabits报错invalid types () or values ()解决方法

//转载http://zhangsha1251.blog.163.com/blog/static/6262405320111037220994/
Myhabits报错invalid types () or values ()解决方法 

报错信息:< xmlnamespace prefix ="o" ns ="urn:schemas-microsoft-com:office:office" />
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.huawei.PIM.DA.common.tools.DB.bean.table.T_contactList with invalid types () or values (). Cause: java.lang.NoSuchMethodException: com.huawei.PIM.DA.common.tools.DB.bean.table.T_contactList.<init>()


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

你可能感兴趣的:(mybatis)