我有使用JPA的簡單maven EJB模塊。這是我的persistance.xml文件使用JPA的EJB Maven模塊
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="2.0">
<persistence-unit name="Persistence">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<mapping-file>GroupTypes.xml</mapping-file>
<properties>
<property name="hibernate.connection.url" value="jdbc:oracle:thin:@127.0.0.1:1521:E"/>
<property name="hibernate.connection.driver_class" value="oracle.jdbc.driver.OracleDriver"/>
<property name="hibernate.connection.username" value="username"/>
<property name="hibernate.connection.password" value="password"/>
</properties>
</persistence-unit>
</persistence>
我正在使用EJB無狀態Bean,我試圖從GroupTypes表中獲取所有屬性。這是我的bean的實現:
public class TestBean
{
private GroupTypes GroupTypes;
private EntityManagerFactory entityManagerFactory;
private EntityManager entityManager;
@WebMethod (operationName = "justTesting")
public boolean justTesting(@WebParam (name = "param") String value)
{
try
{
entityManagerFactory = Persistence.createEntityManagerFactory("Persistance");
entityManager = entityManagerFactory.createEntityManager();
Query query = entityManager.createQuery("Select name from GroupTypes");
List<AmmEdGroupTypes> result = query.getResultList();
return true;
}
catch(Exception e)
{
e.printStackTrace();
return false;
}
}
}
當我嘗試調用這個方法,我得到exeption:javax.persistence.PersistenceException:否EntityManager的持久性提供者命名的持久性。 我的persistance.xml文件放置在文件夾資源/ META-INF/persistance.xml中,如果我不使用bean,則此解決方案有效。有沒有人知道爲什麼這隻發生在我使用bean的情況下?
我使用的是Intellij 12.1.1,Oracle 11g,Glassfish 3.1服務器和JAVA 1.6。