org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Illegal overloaded getter method with ambiguous type for property parentid in class class upc.jxzygl.model.admin.common.PkMeasureCode. This breaks the JavaBeans specification and can cause unpredicatble results.
这个异常的parentid属性在PkMeasureCode实体类中定义get方法是非法的,我的是因为定义了parentid和parent_id,我把parent_id中的下划线去掉了,parentid重复,删除后下面的get方法未删除,有两个get方法,jvm给been赋值时不知道赋给那个了报出的异常,删除其中一个get方法问题解决