PostgreSQL与Grails自动增量问题

时间:2012-12-04 13:07:42

标签: postgresql grails auto-increment

class abc{

   Integer id
   String name
}   

class xyz {


   Integer id
   Integer project_id
   String name
}

当我保存abc对象的对象时,使用一些id(比如12)成功保存,当我保存xyz的对象时,其id增量为(abc.id + 1)。

1 个答案:

答案 0 :(得分:2)

Grails使用序列[hibernate_sequence]为持久存储到数据库的新对象分配id,是否要分配不同类型的id,应该阅读grails docs