0
我使用jboss5.1.x EJB3.0JPA減速例外
我想用我的JPA第一次,當我運行服務器我得到這個異常:
java.lang.IllegalArgumentException: Can't find a persistence unit named 'java:/mracDS'
..
這是我的「道」實體,負責對所有的JPA實體:
@Stateless
public class ECMSEntityManagerDao implements ECMSEntityManagerDaoLocal, ECMSEntityManagerDaoRemote
{
@PersistenceContext(unitName = "java:/mracDS")
EntityManager em;
public ArrayList<T01CounterCalls> getClocksDetailsFromVantive() throws SQLException
{
return (ArrayList<T01CounterCalls>) em.createQuery ("from T01CounterCalls as data").getResultList();
}
}
我查了一下在網: 我從來沒有宣佈persistence.xml 如果我這樣做,應該在裏面聲明什麼?
謝謝, 射線。
你已經嘗試過Google嗎? http://www.google.nl/search?persistence.xml – Gerbrand 2011-01-26 20:13:26