Hibernate 5:解决“org.hibernate.MappingException:未知实体”错误
问题:
您在尝试将 Hibernate 5.0 与 MySQL 集成时遇到了“org.hibernate.MappingException:未知实体”错误。 Hibernate 版本 5.0.0 和 5.0.1 会出现此错误,但 Hibernate 4.3.9 不会出现此错误。
原因:
此问题是由于使用 Hibernate 5 创建 SessionFactory 的方式。使用早期版本的 Hibernate 中的 Configuration().buildSessionFactory(sr) 方法不再有效,因为它会丢弃映射信息。
解决方案:
要解决此错误,有两种方法:
1.简化配置:
对于 hibernate.cfg.xml 和 hibernate.properties 等标准配置文件,您可以在不使用 ServiceRegistry 的情况下创建 SessionFactory:
<code class="java">SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();</code>
2.使用StandardServiceRegistryBuilder加载属性:
如果除了hibernate.properties之外的文件中还有属性,则可以使用StandardServiceRegistryBuilder来加载它们:
将属性作为资源加载:
<code class="java">ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder(). configure().loadProperties("hibernate-h2.properties").build(); SessionFactory sf = new Configuration().buildSessionFactory(serviceRegistry);</code>
从文件系统路径加载属性:
<code class="java">File propertiesPath = new File("some_path"); ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder(). configure().loadProperties(propertiesPath).build(); SessionFactory sf = new Configuration().buildSessionFactory(serviceRegistry);</code>
附加说明:
以上是Hibernate 5:为什么我会收到'org.hibernate.MappingException:未知实体”错误以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!