【MySQL异常】ExecutorException: Error getting generated key or setting result to parameter object

2022/1/8 19:04:01

本文主要是介绍【MySQL异常】ExecutorException: Error getting generated key or setting result to parameter object,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

报错信息:Error getting generated key or setting result to parameter object. Cause: org.apache.ibatis.executor.ExecutorException: Too many keys are generated. There are only 1 target objects. You either specified a wrong 'keyProperty' or encountered a driver bug li......................

要向一张表批量插入数据,在xml文件中写的插入语句如下:

<insert id="Weixin_insertQrcd" useGeneratedKeys="true" keyProperty="id">
        INSERT INTO ygg_order_qrcode (
            orderid,
            num,
            qrcd,
            qrurl,
            qrsts,
            creator,
            create_date,
            valid
        )
        VALUES
        <foreach collection="list" item="row" separator=",">
            (#{orderid},#{row.num},#{row.qrcd},#{row.qrurl},'1',NULL,now(),'1')
        </foreach>
    </insert>

useGeneratedKeys = true (使用生成的主键) 这个表示插入数据之后返回一个自增的主键id给你对应实体类中的主键属性。通过这个设置可以解决在主键自增的情况下通过实体的getter方法获取主键(当然还需要keyproperty指明数据库中返回的主键id给实体类中的哪个属性)。
keyproperty = 主键,这样就可以解决在主键自增的情况下获取主键。

 

 解决

方案1:
将useGeneratedKeys="true" 改为 useGeneratedKeys="false",或者将useGeneratedKeys="true"和keyProperty="id"直接删除

方案2:
配置的Mybatis的版本,高版本的不会出现这个问题。

 

beautiful!

 



这篇关于【MySQL异常】ExecutorException: Error getting generated key or setting result to parameter object的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程