There is no getter for property named 'et' in 'class com.example.entity.Admin'
时间: 2024-06-15 12:08:20 浏览: 195
Mybatis单个参数的if判断报异常There is no getter for property named 'xxx' in 'class java.lang.Integer'的解决方案
在Java编程中,如果在类中没有为属性提供getter方法,那么就无法通过对象直接获取该属性的值。根据你提供的错误信息,看起来你正在尝试获取一个名为'et'的属性,但是在'com.example.entity.Admin'类中并没有相应的getter方法。
要解决这个问题,你可以考虑以下几点:
1. 确保在'com.example.entity.Admin'类中存在名为'et'的属性,并且该属性是私有的。
2. 在'com.example.entity.Admin'类中添加一个公共的getter方法,以便可以从外部访问该属性的值。例如,如果属性名为'et',则可以添加一个名为'getEt()'的方法。
3. 如果你已经在类中定义了getter方法,但仍然出现该错误,请检查方法名是否正确拼写,并确保方法的访问修饰符与属性的修饰符匹配。
希望以上信息对你有帮助!如果你还有其他问题,请随时提问。
阅读全文