您的位置:首页 > 产品设计 > UI/UE

Myhabits报错invalid types () or values ()解决方法with invalid types () or values (). Cause: java.lang.NoSu

2017-02-01 21:21 507 查看
是报错信息:< 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.levi.PIM.DA.common.tools.DB.bean.table.T_contactList with invalid types () or
values (). Cause: java.lang.NoSuchMethodException: com.levi.PIM.DA.common.tools.DB.bean.table.T_contactList.<init>()

原因:

1) Bean函数中的get/set方法与成员变量不一。

2) 构造函数被重载过,但是没有空的构造函数。

3) 最好不要使用简单类型,如int, long等,改用对象模式Integer, Long等。在写条件查询时会用到判断<if xxx != null > … </if>的

我碰到的是第二种,没有写空的构造函数!!!提示我with invalid types () or values (). Cause: java.lang.NoSuchMethod,意思就是没有这种方法。所以后面使用的时候一定要注意这种构造函数的问题。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  with invalid types
相关文章推荐