Hibernate 5.3和TableGenerator

时间:2018-11-09 09:57:31

标签: spring hibernate spring-boot

我将Spring Boot从2.0.6升级到了2.1.0。 Hibernate从5.2更新到5.3。 现在,我在 TableGenerator 上遇到了问题。

这是我拥有的代码(女巫使用5.2):

@Id
@Column(name = "id")
@TableGenerator(name = "item_data", allocationSize = 1)
@GeneratedValue(strategy = GenerationType.TABLE, generator = "item_data")
private Long id;

升级后,我收到此错误:

  

org.postgresql.util.PSQLException:错误:关系“ item_data”不存在

我检查了迁移指南并设置了:

properties.put(Environment.TABLE_GENERATOR_STORE_LAST_USED, "false");

但是它仍然无法正常工作。我想念什么吗?

0 个答案:

没有答案