私は標準の Java アプリケーション (Java EE ではない) を持っており、JPA について学ぼうとしています。問題は、プロジェクトを実行すると、コンソールに次のように出力されることです。
1218 [main] INFO org.hibernate.ejb.Ejb3Configuration - HHH000318: Could not find any META-INF/persistence.xml file in the classpath
Exception in thread "main" javax.persistence.PersistenceException: No Persistence provider for EntityManager named entities
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:89)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
at com.svprdga.test.App.main(App.java:26)
したがって、persistence.xmlファイルが見つからないことがわかりました。検索したところ、WEB-INFなどのJava EEフォルダーに関連する修正が見つかりましたが、それは私の場合ではありません。別の解決策を試しましたが、問題はまだありますそこの。
/srcの下のMETA-INFにpersistence.xmlがあり、その内容は次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<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_2_0.xsd"
version="2.0" xmlns="http://java.sun.com/xml/ns/persistence">
<persistence-unit name="entities" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>com.svprdga.test.database.entity</class>
<properties>
<property name="toplink.jdbc.url" value="jdbc:mysql://localhost:3306/hibtest"/>
<property name="toplink.jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="toplink.jdbc.user" value="root"/>
<property name="toplink.jdbc.password" value=""/>
<!-- EclipseLink should create the database schema automatically -->
<property name="eclipselink.ddl-generation" value="create-tables" />
<property name="eclipselink.ddl-generation.output-mode"
value="database" />
</properties>
</persistence-unit>
</persistence>
助けてくれてありがとう。