没有名为EclipseLink_JPA的

时间:2017-12-18 23:20:28

标签: java jpa eclipselink

我之前使用JPA构建数据库,但突然间我的项目无法工作,我无法弄清楚发生了什么。基德得到这个错误消息:

  

线程中的异常" main" javax.persistence.PersistenceException:没有   EntityManager的持久性提供程序名为EclipseLink_JPA at   javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:84)     在   javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:54)

这是我的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="EclipseLink_JPA" transaction-type="RESOURCE_LOCAL">

        <class>Entity.Person</class>

        <properties>
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/persons"/>
            <property name="javax.persistence.jdbc.user" value="theUser"/>
            <property name="javax.persistence.jdbc.password" value="myPassword"/>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
            <property name="eclipselink.logging.level" value="FINE"/>
            <property name="eclipselink.ddl-generation" value="create-tables"/>
        </properties>

    </persistence-unit>
</persistence>

试着打电话:

EntityManagerFactory entityManagerFactory = Persistence.createEntityManagerFactory("EclipseLink_JPA");
EntityManager entityManager = entityManagerFactory.createEntityManager();

entityManager.getTransaction().begin();

它过去工作得非常好但突然我只得到错误消息。

2 个答案:

答案 0 :(得分:0)

尝试在持久性单元中添加提供程序。我从未使用过EclipseLink,所以我不知道它的包名。

<persistence-unit ... >
    <provider>
        org.hibernate.jpa.HibernatePersistenceProvider  <!-- Replace this with EclipseLink package-->
    </provider>
    ...
</persistence-unit>

答案 1 :(得分:0)

我解决了删除 eclipse-link-3.0.0 并在 pom.xml 中重新插入 eclipse-link-2.5.2

Eclipse 使用此版本从表中生成实体