博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mybatis 批量插入返回主键
阅读量:6208 次
发布时间:2019-06-21

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

1.模型

public class AzTest {
private Integer id; private Integer age; private String title; public Integer getId() {
return id; } public void setId(Integer id) {
this.id = id; } public Integer getAge() {
return age; } public void setAge(Integer age) {
this.age = age; } public String getTitle() {
return title; } public void setTitle(String title) {
this.title = title == null ? null : title.trim(); } } 2.mapper
void insertAll(List
list); 3.xml
insert into az_test(age,title) VALUES
(#{item.age},#{item.title})
 
 

转载于:https://www.cnblogs.com/azbo/p/6438882.html

你可能感兴趣的文章
脚踏实地,不要飘忽不定
查看>>
A Resegmentation Approach for Detecting Rectangular Objects in High-Resolution Imagery
查看>>
郁闷的时候干脆休息
查看>>
sql语句查询Oracle|sql server|access 数据库里的所有表名,字段名
查看>>
当 dynamic 遇上 internal
查看>>
webGL简单例子(klayge)
查看>>
如何在有int型主键遍历表中的某一列数据
查看>>
梯度下降法 Method of steepest descent.
查看>>
跟小静读CLR via C#(09)-扩展方法
查看>>
关于javascript中的回调函数
查看>>
多进程,多线程,就是这么回事儿
查看>>
Java之Log4j入门 [V512工作室视频]
查看>>
mass Framework class模块 v7
查看>>
数的乘方,简单背包,组合
查看>>
70、linux shell常用函数,head
查看>>
马踏棋盘(非递归)
查看>>
SQL Server查看表空间占用情况
查看>>
Android 设置访问WebService的timeout (转)
查看>>
制作自己的数据地图
查看>>
Android 调用系统的拨号服务实现 电话拨打功能
查看>>