未生成休眠序列

2022-03-28 00:00:00 postgresql sequence spring java Hibernate

我正在开发一个Spring(不是Boot!)项目,使用Hibernate和PostgreSQL数据库。我也使用Flyway进行迁移。 我使用Flyway生成数据库的模式,并使用我的Resources文件夹中给定的SQL脚本向其中插入初始数据。出于这个原因,我从hibernate.properties文件中排除了hibernate.hbm2ddl.Auto属性。 在启动时,模式被创建,数据被插入到数据库,但我的问题是,这种方式Hibernate不会生成它的序列,并且我不能保存应用程序中的数据:

org.postgresql.util.PSQLException: ERROR: relation "hibernate_sequence" does not exist

我能用它做什么?


解决方案

您需要创建如下序列:

CREATE SEQUENCE hibernate_sequence START 1;

相关文章