Hibernate 4中的编程SchemaUpdate

时间:2012-12-18 10:07:50

标签: java hibernate java-ee-6

我正在尝试在Java EE 6应用程序中运行SchemaUpdate。在以前的Hibernate版本中,我设法创建Ejb3Configuration然后运行SchemaUpdate。非常喜欢这样:

Ejb3Configuration cfg = new Ejb3Configuration();
cfg.configure(PERSISTENCE_UNIT_NAME, null);
cfg.setProperty("hibernate.hbm2ddl.auto", "update");
cfg.setProperty("hibernate.dialect", dialect.getClass().getName());
Collection<String> entityClassNames = getEntityClassNames(PERSISTENCE_UNIT_NAME);
for (String className : entityClassNames)
{
    cfg.addAnnotatedClass(Class.forName(className));
}

EntityManagerFactory factory =  Persistence.createEntityManagerFactory(PERSISTENCE_UNIT_NAME);

new SchemaUpdate(cfg.getHibernateConfiguration()).execute(true, true);

显然,不推荐使用类Ejb3Config,但不支持。那么用hibernate 4做一个SchemaUpdate的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

你说你正在使用EE 6.你是否正在使用persistence.xml和所有标准的JPA东西?如果没有,那么这是一个错误,第一步是回去修复它。使用persistence.xml,您可以在启动时使用属性指定架构更新:

<persistence xmlns="http://java.sun.com/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
    version="2.0">

    <persistence-unit name="...">
        <properties>
            <property name="hibernate.hbm2ddl.auto" value="update"/>
        </properties>
    </persistence-unit>

</persistence>

那会合适吗?或者您有手工执行此操作的部分原因吗?