如何使用hibernate.properties连接persistence.xml文件

时间:2013-10-17 02:32:00

标签: hibernate

我试图在hibernate.properties文件中声明我的大部分持久性属性。如何将persistence.xml文件指向hibernate.properties文件?

1 个答案:

答案 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将在此处读取属性并进行相应配置。