2

我有一个使用 JPA / Hibernate 的 Web 应用程序我想知道如何休眠可以从实体生成不存在的表。持久化文件如下:

我可以添加什么作为属性?

<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_1_0.xsd"
    version="1.0">
    <persistence-unit name="BankingApp">
        <provider> org.hibernate.ejb.HibernatePersistence</provider>
        <properties>

            <property name="hibernate.connection.driver_class" value="oracle.jdbc.driver.OracleDriver"/>
            <property name="hibernate.connection.url" value="jdbc:oracle:thin:@localhost:1521:XE"/>
            <property name="hibernate.connection.username" value="user"/>
            <property name="hibernate.connection.password" value="password"/>
            <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>

        </properties>
    </persistence-unit>
</persistence>
4

2 回答 2

10

您可以添加此属性

<property name="hibernate.hbm2ddl.auto" value="update"/> 

此属性的可能值为:

  • validate:仅验证架构
  • 更新:更新架构
  • create:创建模式,覆盖以前的数据
  • create-drop:创建模式并在会话结束时删除模式
于 2013-07-18T09:08:39.740 回答
2

我找到了解决方案,只需添加以下属性:

<property name="hibernate.hbm2ddl.auto" value="create"/>
于 2013-07-18T09:40:09.770 回答