Eclipse (Helios) IDE に単純な JPA/Hibernate プロジェクトがあります。プロジェクト>リソースディレクトリにpersistence.xmlを配置しました。そしてEclipseでは、このディレクトリ(Project\resources)をクラスパスに追加しました。
それでも、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 と残りは jar をサポートしています...
私の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 でこのエラーが発生する原因は何ですか? ありがとう