找不到JPA persistence.xml

时间:2014-01-22 10:13:01

标签: jpa jdbc

我知道之前已经问过这个问题,但我仍然无法让JPA使用我的项目。 我收到PersistenceException没有找到提供者。 我在我的src / main / resources / META-INF文件夹中有persistence.xml,我使用m2进行构建,但持久性文件没有移动到构建目录。

这是我的persistence.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" 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_2_0.xsd">
<persistence-unit name="test" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <class>com.entities.User</class>
    <class>com.entities.Group</class>
    <properties>
        <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/BandwidthX"/>
        <property name="javax.persistence.jdbc.password" value="password"/>
        <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
        <property name="javax.persistence.jdbc.user" value="root"/>
    </properties>
</persistence-unit>

我试图坚持使用这段代码:

EntityManagerFactory emf =
        Persistence.createEntityManagerFactory("test");
    EntityManager em = emf.createEntityManager();

1 个答案:

答案 0 :(得分:1)

persistence.xml应位于src/main/resources/META-INF文件夹中,以使构建正常工作。

参见the JPA spec的第8.2.1节。