首页 > 代码库 > hibernate 出现 org.hibernate.MappingException: entity class not found 的解决办法

hibernate 出现 org.hibernate.MappingException: entity class not found 的解决办法

在Hibernate 5.0版本以上时,出现异常

org.hibernate.MappingException: entity class not found:

如果确认配置和代码都无误的情况下,可尝试增加一行代码解决:


Configuration configuration = new Configuration().configure();

//增加下行代码

configuration.addClass(News.class);




本文出自 “程序员瑞欣” 博客,请务必保留此出处http://rayshine.blog.51cto.com/6941801/1884821

hibernate 出现 org.hibernate.MappingException: entity class not found 的解决办法