使用带Grails的Postgresql:缺少序列或表:hibernate_sequence

时间:2012-02-07 11:34:12

标签: hibernate postgresql grails gorm

我在使用Grails 2.0和Postgresql 9.1时遇到了问题

我正在尝试使用顺序ID映射现有数据库。 但是,即使没有在域中创建任何类,我也会遇到错误:

Compiling 1 source files.....
| Running Grails application
| Error  executing bootstraps:
      Error creating bean with name 'transactionManagerPostProcessor': Initialization of bean failed; 
      nested exception is org.springframework.beans.factory.BeanCreationException:
      Error creating bean with name 'transactionManager': Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory';
      (...)
      Invocation of init method failed; nested exception is org.hibernate.HibernateException:
           Missing sequence or table: hibernate_sequence

我的数据源是:

dataSource {
    pooled = true
    driverClassName = "org.postgresql.Driver"
    username = "postgres"
    password = "postgrespass"
    dialect = org.hibernate.dialect.PostgreSQLDialect
    logSql = true
}
hibernate {
    cache.use_second_level_cache = true
    cache.use_query_cache = true
    cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
}
// environment specific settings
environments {
    development {
        dataSource {
            dbCreate = "" 
            url = "jdbc:postgresql://localhost:5432/Rambo"
        }
    }
}

现有数据库是一个扑克软件数据库(Holdem经理)。我正在处理一个不使用序列的PlayerHand对象,但是Player对象有一个序列表。

奇怪的是,在以前的程序中,我很容易使Player对象与Postgresql 8.3& Grails 2.0。

2 个答案:

答案 0 :(得分:6)

你可以配置Postgres每个表使用一个序列 - 我在这里描述:http://grails.1312388.n4.nabble.com/One-hibernate-sequence-is-used-for-all-Postgres-tables-td1351722.html

但是你仍然需要创建序列。 dbCreate='update'不会创建序列(仅createcreate-drop),因此您需要手动创建它们或使用http://www.grails.org/plugin/database-migration等迁移工具

答案 1 :(得分:4)

你可能有一个使用序列ID生成器的实体没有配置任何序列名,因此Hibernate使用默认序列名:hibernate_sequence,但找不到它。

配置序列名称(并使用现有序列),或在数据库中创建hibernate_sequence序列,或者不使用基于序列的生成器。