我必须运行一个初始化sql skript,它创建一个具有特定表空间的表,如下所示:
CREATE TABLE my_table() TABLESPACE my_table_space;
现在我希望hibernate
根据实体自动生成表架构:
@Entity
public class MyEntity {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
}
hibernate.hbm2ddl.auto=update
。
结果:表格是,没有 PRIMARY KEY
约束。为什么?我该如何强制执行此操作?