2010-10-29 106 views
29

我應該在我的persistence.xml<jta-data-source>中放置什麼值?什麼要放入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) 
[...] 

回答

37

問題是Persistence.createEntityManagerFactory("abc")是「自己動手」API,並沒有利用嵌入式EJB容器。您可以非常輕鬆地在您的測試案例中獲得一個容器管理的EntityManager

正如與相關的jndi/datasource問題,我建議你看看examples.zip中的例子。他們都是爲了開始起步而奮鬥的。

這是testcase-injection示例的一個片段,它顯示瞭如何從容器中獲取EntityManager和其他東西以用於測試。

首先,添加一個空的ejb-jar.xml中或應用client.xml的到測試開啓掃描你的測試代碼:

  • 的src /測試/資源/ META-INF /應用 - 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是,我們已經建立了唯一的數據源,OpenEJB的會自動分配該數據源到你的持久性單元,而無需修改您的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(); 
    } 
} 
相關問題