【问题标题】:Hibernate 5.2.2: No Persistence provider for EntityManagerHibernate 5.2.2:EntityManager 没有持久性提供程序
【发布时间】:2017-01-17 12:32:21
【问题描述】:

Hibernate 5.1.1 和 5.2.2 之间发生了什么变化?如果我使用 5.2.2,我会收到一条错误消息“没有名为 pu 的 EntityManager 的持久性提供程序”。完全相同的配置适用于 5.1.1。我应该如何更改我的代码以使 5.2.2 工作?

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>jpatest</groupId>
    <artifactId>jpatest</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <hibernate.version>5.2.2.Final</hibernate.version>
    </properties>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/junit/junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.4.1209.jre7</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>${hibernate.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-entitymanager</artifactId>
            <version>${hibernate.version}</version>
        </dependency>
    </dependencies>
</project>

src/main/resources/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="pu" >
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <properties>
            <property name="hibernate.archive.autodetection" value="class" />
            <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
            <property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
            <property name="hibernate.connection.url" value="jdbc:postgresql://localhost:5432/mydb" />
            <property name="hibernate.default_schema" value="myschema" />
            <property name="hibernate.connection.username" value="xxx" />
            <property name="hibernate.connection.password" value="zzz" />
            <!-- <property name="hibernate.show_sql" value="true"/> -->
            <property name="hibernate.flushMode" value="FLUSH_AUTO" />
            <property name="hibernate.hbm2ddl.auto" value="validate" />
        </properties>
    </persistence-unit>
</persistence>

创建实体管理器

factory = Persistence.createEntityManagerFactory("pu");
em = factory.createEntityManager();
tx = em.getTransaction();

【问题讨论】:

    标签: java hibernate


    【解决方案1】:

    hibernate-release-5.2.2.Final.zip 包文件中不存在类 org.hibernate.ejb.HibernatePersistence。这就是找不到提供程序的原因,因为类不能(在项目库 jar 中)。相反,我使用了 org.hibernate.jpa.HibernatePersistenceProvider 类,CAN 可以在 hibernate-core-5.2.2.Final.jar 中找到(hibernate- release-5.2.2.Final.zip 包),通过将 persistence.xml 中的提供者更改为 &lt;provider&gt;org.hibernate.jpa.HibernatePersistenceProvider&lt;/provider&gt;。这样做,效果很好!希望问题只是这个。

    【讨论】:

    【解决方案2】:

    我有同样的错误。 我改变了版本的

            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-entitymanager</artifactId>
            </dependency>
    

    从 5.3.1.Final 到 5.3.6.Final 并且错误消失了。

    【讨论】:

    • 我遇到了完全相同的问题。这解决了它。 (部署在 Tomcat 上)
    【解决方案3】:

    有时只是忘记将persistence.xml 文件添加到构建路径会导致此问题。请按照以下步骤操作:

    1. 右键单击persistence.xml 文件。
    2. 点击构建路径
    3. 添加到构建路径

    那么它应该可以工作了。

    【讨论】:

      猜你喜欢
      • 2016-11-04
      • 2012-06-21
      • 2014-12-15
      • 1970-01-01
      • 2012-11-03
      • 1970-01-01
      • 2013-06-20
      • 1970-01-01
      相关资源
      最近更新 更多