首页 > 代码库 > 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 的解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。