插入数据库的值需要立即得到返回的主键id进行下一步程序操作
Mapper.insertSelective(record);
此方法:插入一条数据,只插入不为null的字段,不会影响有默认值的字段
支持Oracle序列,UUID,类似Mysql的INDENTITY自动增长(自动回写)
优先使用传入的参数值,参数值空时,才会使用序列、UUID,自动增长
controller的实际应用:使用方法id会直接将映射到参数的实体上使用时直接使用参数的实体get获取值
通用mapper相关配置查看其它文章 http://blog.csdn.net/isea533/article/details/41457529
dao层方法:
/**
* 插入数据库并返回主键id
* @param batch
* @return
*/
Integer insertBatchReturnId(Batch batch);
xml的sql语句写法
记得加上useGeneratedKeys和keyProperty配置即可,前者是指设置是否使用jdbc的getGenereatedKeys方法获取主键并赋值到keyProperty设置的属性中,后者即实体类主键字段(并且大小写要对应上)
insert into t_batch (
batchCode,
bankCode,
bizType,
companyCode,
wtEndDate,
wtDate,
contractId,
totalCount,
totalBase,
handCode)
values
( #{batchcode},
#{bankcode},
#{biztype},
#{companycode},
#{wtenddate},
#{wtdate},
#{contractid},
#{totalcount},
#{totalbase},
#{handCode})
batchService.insertBatch(param);//实体
idlist.add(param.getId());
// 下面是SQLServer获取最近一次插入记录的主键值的方式
select @@IDENTITY as id
insert into TStudent(name, age) values(#{name}, #{age})
这里推荐使用第一种和第二种中方法
第三种方法对oracl额外的配置