0
我想在hibernate.properties文件中聲明我的大多數持久性屬性。如何將persistence.xml文件指向hibernate.properties文件?如何連接persistence.xml文件與hibernate.properties
我想在hibernate.properties文件中聲明我的大多數持久性屬性。如何將persistence.xml文件指向hibernate.properties文件?如何連接persistence.xml文件與hibernate.properties
你不知道。您只需在persistence.xml中定義的特定於Hibernate的屬性:
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
</properties>
你也可以把JPA 2種標準的性質爲上市here在properties
元素爲好。
當應用程序啓動時,Hibernate將讀取這裏的屬性並進行相應的配置。