我在 Eclipse (Helios) IDE 中有一个简单的 JPA/Hibernate 项目。我已将 persistence.xml 放在 Project>resources 目录中。在 Eclipse 中,我已将此目录(项目\资源)添加到类路径中。
然而,当我在 Eclipse IDE 中运行我的 appln frm 时,我看到了这个错误: javax.persistence.PersistenceException: No Persistence provider for EntityManager named XX
在 Eclipse 中,我关注库: hibernate3.jar hibernate-jpa-2.0-api-1.0.0.Final.jar hibernate-entitymanager-3.6.0.Final.jar 和其余的支持 jars...
我的 persistence.xml 是:
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<persistence-unit name="XX" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<!-- the JNDI data source -->
<non-jta-data-source>java:comp/env/jdbc/tutorialDS</non-jta-data-source>
<properties>
...
</properties>
</persistence-unit>
</persistence>
是什么导致 Eclipse IDE 中出现此错误?谢谢