我想使用hibernate(Netbeans)生成java类。当表没有主键时,这似乎是不可能的。
我无法访问数据库,我刚刚发现,他们使用序列而不是主键。
create sequence SEQ_ANY
minvalue 0
maxvalue 99999999999999999999
start with 0
increment by 1000
cache 20;
所以我现在的问题是,我可以编辑 hibernate.hbm 或 hibernate.cfg.xml 或任何其他文件来告诉 hibernate 哪个类包含主键吗?铁
<table name="myTable">
<useThisFieldAsPrimaryKey name="uniqueSequenz"/>
</table>
谢谢!