相关疑难解决方法(0)

一个Persistence.xml中的两个持久性单元

我们创建了一些我们所有项目都将使用的库,这些库将提供我们所有系统的基本功能(登录,管理等).但应用程序本身可以使用另一个数据库.

我们所做的是使用两个持久单元创建Persistence.xml.并将所有核心库实体打包在一个名为"LN-model.jar"的jar中,以及在"App-model.jar"中输出测试应用程序的所有实体.但出于某种原因,我们仍然获得以下信息.

无法在名为[gfdeploy#/ Users/zkropotkine/WORK/SeguridadCore/dist/gfdeploy/SeguridadCore-war_war]的模块范围内解析与persistence-context-ref-name [xxxxlistener.InicializadorListener/em]对应的持久性单元.请验证您的申请.

这是我们的Persistence.xml

<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">

<persistence-unit name="x" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <jta-data-source>jdbc/x</jta-data-source>
    <jar-file>App-model.jar</jar-file>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties>
    </properties> 
</persistence-unit>

<persistence-unit name="y" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <jta-data-source>jdbc/y</jta-data-source>
    <jar-file>LN-model.jar</jar-file>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties/>
</persistence-unit> 
Run Code Online (Sandbox Code Playgroud)

顺便说一下,我们将Persistence.xml放在jar中,然后添加到我们的企业项目(EAR)中.

java persistence jpa persistence.xml

14
推荐指数
2
解决办法
3万
查看次数

标签 统计

java ×1

jpa ×1

persistence ×1

persistence.xml ×1