在persistence.xml 的jta-data-source 中放入啥?

Posted

技术标签:

【中文标题】在persistence.xml 的jta-data-source 中放入啥?【英文标题】:What to put into jta-data-source of persistence.xml?在persistence.xml 的jta-data-source 中放入什么? 【发布时间】:2011-05-02 08:45:00 【问题描述】:

我的persistence.xml 中的<jta-data-source> 应该赋予什么价值?

在 glassfish 管理面板中,我创建了一个数据源名称 "abcDS"。在我的jndi.properties(在src/test/resources)中,我这样定义它:

[...]
abcDS=new://Resource?type=DataSource
abcDS.JdbcDriver=org.hsqldb.jdbcDriver
abcDS.JdbcUrl=jdbc:hsqldb:mem:testdb
abcDS.JtaManaged=true
[...]

我应该在persistence.xml 中放置什么?我在网上找到了很多变种,例如:"jdbc/abcDS""java:/abcDS""abcDS"。哪一个是对的?这有什么规则吗?我知道它与JNDI有关,但是...

我正在尝试在我的单元测试中创建 EMF:

EntityManagerFactory emf = Persistence.createEntityManagerFactory("abc");

这是我在日志中得到的:

[...]
SEVERE: Could not find datasource: abcDS javax.naming.NameNotFoundException: 
    Name "abcDS" not found.
at org.apache.openejb.core.ivm.naming.IvmContext.federate(IvmContext.java:193)
at org.apache.openejb.core.ivm.naming.IvmContext.lookup(IvmContext.java:150)
at org.apache.openejb.core.ivm.naming.ContextWrapper.lookup(ContextWrapper.java:115)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
[...]

【问题讨论】:

【参考方案1】:

问题在于Persistence.createEntityManagerFactory("abc") 是“自己动手”API,并没有利用嵌入式 EJB 容器。你可以很容易地在你的测试用例中得到一个容器管理EntityManager

就像相关的 jndi/datasource 问题一样,我建议您查看examples.zip 中的示例。它们都旨在消除入门中的困难。

这是来自 testcase-injection 示例的 sn-p,它展示了如何从容器中获取 EntityManager 和其他内容以用于测试。

首先,在您的测试中添加一个空的 ejb-jar.xml 或 application-client.xml 以打开对您的测试代码的扫描:

src/test/resources/META-INF/application-client.xml

然后,使用 @org.apache.openejb.api.LocalClient 注释您的测试用例,并使用标准 JavaEE 注释进行实际注入。

@LocalClient
public class MoviesTest extends TestCase 

    @EJB
    private Movies movies;

    @Resource
    private UserTransaction userTransaction;

    @PersistenceContext
    private EntityManager entityManager;

    public void setUp() throws Exception 
        Properties p = new Properties();
        p.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.LocalInitialContextFactory");
        p.put("movieDatabase", "new://Resource?type=DataSource");
        p.put("movieDatabase.JdbcDriver", "org.hsqldb.jdbcDriver");
        p.put("movieDatabase.JdbcUrl", "jdbc:hsqldb:mem:moviedb");

        InitialContext initialContext = new InitialContext(p);

        // Here's the fun part
        initialContext.bind("inject", this);
    

由于movieDatabase 是我们设置的唯一DataSource,OpenEJB 会自动将该DataSource 分配给您的持久性单元,而无需修改您的persistence.xml。您甚至可以将<jta-data-source><non-jta-data-source> 留空,OpenEJB 仍然知道该怎么做。

但为了完整起见,以下是此特定应用程序如何定义 persistence.xml

<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">

  <persistence-unit name="movie-unit">
    <jta-data-source>movieDatabase</jta-data-source>
    <non-jta-data-source>movieDatabaseUnmanaged</non-jta-data-source>
    <class>org.superbiz.testinjection.Movie</class>

    <properties>
      <property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)"/>
    </properties>
  </persistence-unit>
</persistence>

然后是有趣的部分,在测试中一起使用它们

public void test() throws Exception 

    userTransaction.begin();

    try 
        entityManager.persist(new Movie("Quentin Tarantino", "Reservoir Dogs", 1992));
        entityManager.persist(new Movie("Joel Coen", "Fargo", 1996));
        entityManager.persist(new Movie("Joel Coen", "The Big Lebowski", 1998));

        List<Movie> list = movies.getMovies();
        assertEquals("List.size()", 3, list.size());

        for (Movie movie : list) 
            movies.deleteMovie(movie);
        

        assertEquals("Movies.getMovies()", 0, movies.getMovies().size());

     finally 
        userTransaction.commit();
    

【讨论】:

以上是关于在persistence.xml 的jta-data-source 中放入啥?的主要内容,如果未能解决你的问题,请参考以下文章

Karaf webbundle 无法找到 persistence.xml

persistence.xml 不同的事务类型属性

如何在没有 persistence.xml 的情况下配置 Spring?

JPA 使用替代“persistence.xml”

在persistence.xml 的jta-data-source 中放入啥?

不在JPA 的 persistence.xml 文件中配置Entity class的解决办法