java UnknownEntityTypeException: 无法找到持久性 (Hibernate 5.0)

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/32197562/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-11-02 19:48:42  来源:igfitidea点击:

UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0)

javahibernateconfigurationsessionfactoryhibernate-5.x

提问by Mohammad Faisal

In the code below when I try to execute Main.javaI am getting exception:

在下面的代码中,当我尝试执行Main.java时,出现异常:

Exception in thread "main" org.hibernate.UnknownEntityTypeException: Unable to locate persister: com.np.vta.test.pojo.Users
    at org.hibernate.internal.SessionFactoryImpl.locateEntityPersister(SessionFactoryImpl.java:792)
    at org.hibernate.internal.SessionImpl.locateEntityPersister(SessionImpl.java:2637)
    at org.hibernate.internal.SessionImpl.access00(SessionImpl.java:164)
    at org.hibernate.internal.SessionImpl$IdentifierLoadAccessImpl.<init>(SessionImpl.java:2575)
    at org.hibernate.internal.SessionImpl$IdentifierLoadAccessImpl.<init>(SessionImpl.java:2562)
    at org.hibernate.internal.SessionImpl.byId(SessionImpl.java:1044)
    at org.hibernate.internal.SessionImpl.get(SessionImpl.java:955)
    at com.app.test.Main.main(Main.java:20)

but if I do uncomment cfg.addClass( Users.class ).addResource( "com/np/vta/test/pojo/Users.hbm.xml" );then the code works fine.

但是如果我取消注释,cfg.addClass( Users.class ).addResource( "com/np/vta/test/pojo/Users.hbm.xml" );那么代码就可以正常工作。

Why it is not reading the <mapping>from hibernate.cfg.xml?

为什么不读取<mapping>from hibernate.cfg.xml



Project setup

项目设置

project setup eclipse

项目设置日食



hibernate.cfg.xml

休眠文件.cfg.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
                                         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.password">root@123321</property>
        <property name="hibernate.connection.url">jdbc:mysql://192.168.1.90:3306/test</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <mapping resource="com/np/vta/test/pojo/Users.hbm.xml" class="com.np.vta.test.pojo.Users" />
    </session-factory>
</hibernate-configuration>


Users.hbm.xml

用户.hbm.xml

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 24 Aug, 2015 3:57:45 PM by Hibernate Tools 3.4.0.CR1 -->
<hibernate-mapping>
    <class name="com.np.vta.test.pojo.Users" table="tomcat_users">
        <id name="userName" type="java.lang.String">
            <column name="user_name" />
            <generator class="assigned" />
        </id>
        <property name="password" type="java.lang.String">
            <column name="password" />
        </property>
    </class>
</hibernate-mapping>


Users.java

用户.java

package com.np.vta.test.pojo;

import java.io.Serializable;

public class Users implements Serializable
{
    private static final long serialVersionUID = 7855937172997134350L;
    private String            userName;
    private String            password;

    public Users()
    {
    }
    // getter and setters
}


Main.java

主程序

package com.app.test;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;

import com.np.vta.test.pojo.Users;

public class Main
{
    public static void main( String[] args )
    {
        Configuration cfg = new Configuration();
        cfg.configure( "hibernate.cfg.xml" );
        //        cfg.addClass( Users.class ).addResource( "com/np/vta/test/pojo/Users.hbm.xml" );
        StandardServiceRegistryBuilder registryBuilder = new StandardServiceRegistryBuilder().applySettings( cfg.getProperties() );
        SessionFactory sessionFactory = cfg.buildSessionFactory( registryBuilder.build() );
        Session session = sessionFactory.openSession();
        Users users = session.get( Users.class, "anand" );
        System.out.println( users );
    }
}

回答by osama yaccoub

Don't use Configuration with StandardServiceRegistryBuilder, Configuration is considered deprecated, but instead make the bootstrapping as mentioned in the hibernate 5 documentation, I had the same problem and this fixed it.

不要将 Configuration 与 StandardServiceRegistryBuilder 一起使用,Configuration 被认为已弃用,而是按照 hibernate 5 文档中提到的方式进行引导,我遇到了同样的问题并修复了它。

StandardServiceRegistry standardRegistry = new     StandardServiceRegistryBuilder()
    .configure( "org/hibernate/example/MyCfg.xml" )
    .build();

Metadata metadata = new MetadataSources( standardRegistry )
    .addAnnotatedClass( MyEntity.class )
    .addAnnotatedClassName( "org.hibernate.example.Customer" )
    .addResource( "org/hibernate/example/Order.hbm.xml" )
    .addResource( "org/hibernate/example/Product.orm.xml" )
    .getMetadataBuilder()
    .applyImplicitNamingStrategy( ImplicitNamingStrategyJpaCompliantImpl.INSTANCE )
    .build();

SessionFactory sessionFactory = metadata.getSessionFactoryBuilder()
    .applyBeanManager( getBeanManagerFromSomewhere() )
    .build();

for further details , check the documentation

有关更多详细信息,请查看文档