我正在尝试将同一个实体持久化到MySQL和Postgres数据库(这主要是为了识别任何不一致,并找出任何执行双写的问题的细节 - 我在这里遇到过)。我发现的文章都描述了依赖于其他框架的解决方案。我正在尝试使用Glassfish 4.0开箱即用,JPA 2.1和EclipseLink 2.5作为JPA提供程序来解决这个问题。我正在使用Eclipse,并意识到IDE不支持在persistence.xml文件中配置多个持久性单元,所以我直接为它编写XML。
我希望在代码中做同样的事情(在同一个方法中):
@PersistenceContext(name = "MyAppMySQLPU")
EntityManager emMySQL;
@PersistenceContext(name = "MyAppPostgresPU")
EntityManager emPostgres;
//...etc...
MyThing thing = new MyThing();
//...etc...
emMySQL.persist(thing);
emPostgres.persist(thing);
并使用一个 persistence.xml
包含这个的文件:
<persistence-unit name="MyAppPostgresPU">
<jta-data-source>jdbc/PostgresPool_test</jta-data-source>
<class>model.MyThing</class>
</persistence-unit>
<persistence-unit name="MyAppMySQLPU">
<jta-data-source>jdbc/MySQLPool_test</jta-data-source>
<class>model.MyThing</class>
</persistence-unit>
当我这样做时,我收到以下错误:
SEVERE: Exception while invoking class org.glassfish.persistence.jpa.JPADeployer prepare method
SEVERE: Exception while preparing the app
SEVERE: Exception while preparing the app : Could not resolve a persistence unit corresponding to the persistence-context-ref-name [MyAppPostgresPU] in the scope of the module called [MyApp]. Please verify your application.
但是,如果我只包括其中一个 <persistence-unit>
短语(无论哪一个),实体被持久化到相关的数据库 - 我无法弄清楚如何让它同时使用它们(不在其他框架中利用持久性功能)。