There is no getter for property named 'catgory' in 'class com.neuedu.mybatis.po.Goods'
时间: 2023-11-19 11:46:24 浏览: 3351
使用Mybatis遇到的there is no getter异常
There is no getter for property named 'catgory' in 'class com.neuedu.mybatis.po.Goods' 的报错是由于在com.neuedu.mybatis.po.Goods类中缺少名为getCatgory()的getter方法引起的。Mybatis默认采用ONGL解析参数,所以在查询参数时会自动调用getter方法获取属性值,如果没有相应的getter方法,就会报错。
要解决这个问题,你需要在com.neuedu.mybatis.po.Goods类中添加一个名为getCatgory()的方法,该方法应该返回catgory属性的值。这样,在查询过程中,Mybatis就能够正确地获取到catgory属性的值了。
阅读全文