解决There is no getter for property named 'stu_id' in 'class com.lhm.demo.entity.StuInfo'
时间: 2023-10-25 07:20:28 浏览: 78
使用Mybatis遇到的there is no getter异常
要解决这个错误,可以在 com.lhm.demo.entity.StuInfo 类中定义一个名为 getStu_id() 的公有方法,用来获取 stu_id 属性的值。方法的实现可以直接返回 stu_id 属性的值即可。例如:
```
public class StuInfo {
private Integer stu_id;
// 其他属性和方法省略
public Integer getStu_id() {
return stu_id;
}
public void setStu_id(Integer stu_id) {
this.stu_id = stu_id;
}
}
```
这样就可以通过调用 getStu_id() 方法来获取 stu_id 属性的值了。同时,为了能够设置 stu_id 属性的值,还需要定义一个名为 setStu_id() 的公有方法,用来设置 stu_id 属性的值。
阅读全文