1、在oracle sequence首先创建sequence
create sequence seq_id minvalue 1 start with 1 increment by 1 cache 20;
2.在你的hbm.xml中的配置
这样再插入数据的时候,hibernate会自动生成如下语句:
hibernate: select seq_id.nextval from dual hibernate: insert into yxjk.t_yxjk_whrytxl (xm0000, zw0000, lxdh00, sjhm00, dzyj00, ip0000, id0000) values (?, ?, ?, ?, ?, ?, ?)
自动生成下一个序列值,然后将对象插入表中。在使用的时候需要注意,hibernate对于sequence的主键的要求是一定要是shor,long,或者integer。