我有使用 JPA 的简单 Maven EJB 模块。这是我的 persistence.xml 文件
<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;
}
}
}
当我尝试调用此方法时,出现异常:javax.persistence.PersistenceException: No Persistence provider for EntityManager named Persistance。我的persistance.xml 文件放在文件夹resources/META-INF/persistance.xml 中,如果我不使用bean,则此解决方案有效。有人知道为什么只有在我使用bean时才会发生这种情况吗?
我正在使用 Intellij 12.1.1、Oracle 11g、Glassfish 3.1 服务器和 JAVA 1.6。