您好我只想知道如何在persistence.xml中配置两个数据源,其中一个数据源的jar在另一个之外。我试过了,但如果可能的话,我真的不会。
答案 0 :(得分:4)
是的,您可以在persistence.xml中配置两个数据源。你只需要两个独立的元素。
<persistence>
<persistence-unit name="datasourceOne">
<jta-data-source>java:/DefaultDS</jta-data-source>
<jar-file>../MyApp.jar</jar-file>
<class>org.acme.Employee</class>
<class>org.acme.Person</class>
<class>org.acme.Address</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
</properties>
</persistence-unit>
<persistence-unit name="datasourceTwo">
<!-- some configuration -->
</persistence-unit>
</persistence>