博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mybatis 3 批量插入返回主键 Parameter 'id' not found
阅读量:6534 次
发布时间:2019-06-24

本文共 689 字,大约阅读时间需要 2 分钟。

@Insert("")    @Options(useGeneratedKeys = true, keyProperty = "id")    Integer batchActivityGift(@Param("items")List
items);

 

这个会抛异常   Parameter 'id' not found

 

把 useGeneratedKeys = true  改成 useGeneratedKeys = false

 

来自:https://www.cnblogs.com/smallstudent/p/5924213.html

https://blog.csdn.net/danchaofan0534/article/details/77095159

 

以上问题解决了id not  found   然而没有达到我想要的  列表返回主键id

@Insert("")    @Options(useGeneratedKeys = true, keyProperty = "id",keyColumn="id")    Integer batchActiveItem(@Param("list")List
items);

collection对应的值请使用list    

@Param("list")

来自:https://blog.csdn.net/kahhy/article/details/84248354

转载于:https://www.cnblogs.com/lanliying/p/11007798.html

你可能感兴趣的文章
apache端口占用问题
查看>>
本地Office Project计划表同步到SharePoint2013任务列表的权限问题
查看>>
Windows2008 R2 GAC权限问题
查看>>
洛谷——P1469 找筷子
查看>>
几句话就能让你明白:网络地址转换(NAT)
查看>>
springboot项目自定义注解实现的多数据源切换
查看>>
特此说明
查看>>
使用flume替代原有的scribe服务
查看>>
用脚本来定制ESXI安装镜像
查看>>
微软企业级加解密解决方案MBAM架构
查看>>
没有苦劳,只有功劳!
查看>>
基于ThinkPHP写的一个简单的CMS系统
查看>>
Exchange 2010 DAG local and Site DR/Failover and Fail back
查看>>
LigerUI - 树表格的数据来自Server
查看>>
认证技术概述
查看>>
2016国赛小结
查看>>
Android Studio 第六十四期 - Android业务组件化之URL Scheme使用
查看>>
Hyper-V 2016 系列教程41 Windows 10 Hyper-V 系统要求
查看>>
EC2 WordPress 移动目录
查看>>
Windows Server 2008 启用公共文件夹共享
查看>>