我试图在 hibernate.properties 文件中声明我的大部分持久性属性。如何将 persistence.xml 文件指向 hibernate.properties 文件?
问问题
125 次
1 回答
1
你没有。您只需在 persistence.xml 中定义特定于 Hibernate 的属性:
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
</properties>
您也可以将此处列出的 JPA 2 标准属性放入properties
元素中。
当应用程序启动时,Hibernate 将读取此处的属性并进行相应的配置。
于 2013-10-17T04:01:05.090 回答