org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘createdData’ in 'class com.nowcoder.model.News’
相信不少小伙伴使用MyBatis碰到过这样的问题,提示某属性没有getter方法。
我在这里提出两种解决方法,几乎可以解决这样的问题。
1、去对应的model看,是不是真的缺少getter方法。
2、如果并不是缺少getter方法,那我可以很认真地告诉你,你的拼写可能出现错误了。因为拼写出现了错误,sql语句传入的参数与model对应的实体参数不一致的话,也会报这种错误。
拿我的列子说吧,我的createdData在我的model那里是有getter方法的,那我还报这种错误,只能的说明一种情况,可能我的拼写错误了。然后果然错误了,在sql语句传入参数#{createdData}时,createdData拼写错误,我的model对应的是createdDate。所以,以后碰到这种问题,从这两方面入手。
Mybatis报错:There is no getter for property named 'xxxx' in 'class xxxx之解决办法
最新推荐文章于 2024-09-23 19:35:35 发布