3

我在一个大型 EJB3 项目上工作,我的 orm.xml 也很大。是否可以在 orm "parent" 中包含其他 orm 文件?

感谢帮助 :)

4

2 回答 2

4

orm.xml 没有包含语法,但您可以<mapping-file>在 persistence.xml 中指定多个。

于 2013-06-27T13:48:44.170 回答
4

是的,在 META-INF 中添加 orm1.xml、orm2.xml。

<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
  <persistence-unit name="UnitPU" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <class>co.com.prueba.modelo.Person</class>    
    <properties>
      <property name="javax.persistence.jdbc.url" value="jdbc:oracle:thin:@localhost:1521:xe"/>
      <property name="javax.persistence.jdbc.user" value="user"/>
      <property name="javax.persistence.jdbc.driver" value="oracle.jdbc.OracleDriver"/>
      <property name="javax.persistence.jdbc.password" value="1234"/>
    </properties>
    <mapping-file>META-INF/orm1.xml</mapping-file>
    <mapping-file>META-INF/orm1.xml</mapping-file>
  </persistence-unit>
于 2015-05-28T16:51:44.283 回答