mybatis报错org.mybatis.spring.MyBatisSystemException: nested exception is

本文详细解析了在使用MyBatis框架向MySQL数据库插入数据时遇到的NosetterfoundforthekeyProperty错误原因及解决方案。指出错误源于实体类属性与数据库字段名大小写不一致,导致setter方法匹配失败。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

严重: Servlet.service() for servlet [mvc-dispatcher] in context with path [/medical-treatment-manage] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException:No setter found for the keyProperty ‘materialScienceId’ in com.naturent.medical.entity.MaterialScience.
在mysql数据库使用mybatis插入数据时报错,可以清楚的看到“keyProperty”,在xml文件

<insert id="insert" parameterType="com.naturent.medical.entity.xxxx">
    <selectKey keyProperty="materialScienceId" order="AFTER" resultType="java.lang.Integer">
    SELECT LAST_INSERT_ID()
    </selectKey>

指的就是keyProperty的属性出错了,当前属性materialScienceId应该指向的是实体类materialscienceid,而不是数据库中的字段名materialScienceId,我这里表字段名为materialScienceId有大小写,而创建实体类是没有使用跟表名完全相同的,所有大小写问题报错,materialScienceId没有对应是set方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值