set对象没有属性There is no WRITEABLE property
时间: 2023-11-21 21:04:42 浏览: 125
引用\[1\]:这个异常是由于在ibatis的配置文件中,property属性的值与parameterClass属性的值冲突导致的。具体来说,在删除学校信息的例子中,配置文件中的parameterClass属性被设置为int类型,而property属性被设置为studentId。然而,int类型并没有名为studentId的属性,因此会报错。解决这个问题的方法是将property属性的值改为value,这样就不会与parameterClass属性冲突了。\[1\]
引用\[2\]:这个异常是由于在使用resultMap时,property属性指定的实体属性在类中找不到或者没有对应的get和set方法导致的。在修改前的例子中,property属性被设置为studentId,但是在Student类中找不到名为studentId的属性或者对应的get和set方法,因此会报错。解决这个问题的方法是确保property属性在类中能够找到,并且有对应的get和set方法。\[2\]
引用\[3\]:这个问题是由于在使用set对象时,没有指定正确的属性导致的。具体来说,在修改前的例子中,set对象的属性被设置为studentId,但是在Student类中找不到名为studentId的属性或者对应的get和set方法,因此会报错。解决这个问题的方法是确保set对象的属性在类中能够找到,并且有对应的get和set方法。\[3\]
#### 引用[.reference_title]
- *1* [ibatis异常:com.ibatis.common.beans.ProbeException: There is no READABLE property](https://blog.csdn.net/han2010jay/article/details/84494500)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [resultMap使用不当导致出现There is no WRITEABLE property named 'student_id' in class 'com](https://blog.csdn.net/evilcry2012/article/details/52440752)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [resultMap使用不当导致出现There is no WRITEABLE property named 'student_id' in class '...](https://blog.csdn.net/yeweiouyang/article/details/24469421)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文