赞
踩
1.因为使用的数据库是Oracle数据库,表中包含自增字段时,采用的是定时器+序列的方式
--自增定时器
create or replace trigger rm_sequence_trigger --定时器名
before insert
on resource_manage -- 表名
for each row
begin
select rmsequence.nextval into:new.id from dual;-- rmsequence 创建的自增序列,.nextval 表示当前序列的下一个 ;new 当前行
end rm_sequence_trigger;
--创建的自增序列
create sequence RMSEQUENCE --序列名
minvalue 1
maxvalue 999999999
start with 21
increment by 1
cache 20
order;
2.在使用save()插入数据时,当bean的id为null时,就会报错,网上查了一下,发现当数据表的id是自增时,需要在bean中添加注解:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)//用于指定主键的生成策略 ;save()时 bean中的id可以为null
@Column(name="ID")
@JsonIgnore //在实体类向前台返回数据时用来忽略不想传递给前台的属性或接口
private Integer id;
之后,每次save(),当bean的id为null或id不在表中时,数据表中就会插入数据;若将要save()的bean id已在表中则更新数据。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。