6

我想用 Hibernate 和 Postgresql 自动创建我的数据库表,但是我得到了关于序列的错误。是否可以使用 Hibernate 自动创建序列,还是我手动生成序列?

我的实体示例:

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;

@Entity
@Table(uniqueConstraints = { @UniqueConstraint( columnNames =  { "id" }) })
@SequenceGenerator(name="SEQ_EXAMPLE_ID", sequenceName="example_id_seq", allocationSize=1)
public class Example {

    @Id
    @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SEQ_EXAMPLE_ID")
    private Long id;

    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public String g
}

休眠配置:

hbm2ddl.auto=create-drop
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
hibernate.show_sql=true 

例外:

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.hibernate.exception.SQLGrammarException: could not get next sequence value

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

4 回答 4

1

您的映射似乎正确,我建议激活以下类别的日志记录以查看究竟发生了什么:

  • org.hibernate.tool.hbm2ddl: 在执行时记录所有 SQL DDL 语句

将其设置为DEBUG并检查 DDL 语句(也许用相关部分更新问题)。

PS:anallocationSize=1不是很明智,使用默认会更好。但这无关紧要。

参考

于 2010-08-28T22:21:12.273 回答
1

您必须按照Hibernate docsapplication.properties中的描述启用自动模式创建:

hibernate.hbm2ddl.auto = create

或者在使用 Spring 时:

spring.jpa.hibernate.ddl-auto = create

但一般建议不要在生产中使用它,请参阅Hibernate: hbm2ddl.auto=update in production?

请改用LiquibaseFlyway等数据库架构迁移工具。

于 2015-11-14T22:02:59.397 回答
0

这是我的解决方案。适用于 Postgres

<hibernate-mapping>

  <!-- ... -->

  <database-object>
    <create>CREATE SEQUENCE my_sequence</create>
    <drop>DROP SEQUENCE IF EXISTS my_sequence</drop>
  </database-object>

</hibernate-mapping>
于 2016-10-12T08:36:03.920 回答
-2

- 我们不能使用 hbm2ddl 属性创建序列 - 我们可以创建任意数量的表,但不能创建序列

序列是特定于数据库的,我们必须在数据库中创建自己的序列

于 2014-10-05T06:17:13.330 回答