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