ReflectionException: Illegal overloaded getter method with ambiguous type for property enabled in...
程序员文章站
2022-07-15 10:56:22
...
我在springboot 整合修改spring security时,遇到一个java和mybatis映射冲突的bug。
nested exception is org.apache.ibatis.reflection.ReflectionException: Illegal overloaded getter method with ambiguous type for property enabled in class class com.teng.security.entity.User. This breaks the JavaBeans specification and can cause unpredictable results.
报错的原因是因为类中同时出现了 isEnabled() 和 getEnabled(),如下:
@Override
public boolean isEnabled() {
return enabled;
}
public Boolean getEnabled() {
return enabled;
}
解决办法是
方法1.重命名isEnabled(),不要是is开头换成其他的,如:typeofEnabled()
(由于我上面isEnabled()是个@Override,显然方法1不行)
方法2:删除getEnabled()这个方法,通过上面可以发现他们返回的值是一样的,那就可以去掉一个。