做
问题:
在 persistence.xml 文件中,省略了
答案:
虽然
Hibernate 的自动检测:
启用 Hibernate 的自动检测在 Java SE 中,将 hibernate.archive.autodetection 属性添加到 persistence.xml 文件中,如下所示下面:
<persistence-unit name="eventractor" transaction-type="RESOURCE_LOCAL"> <!-- Hibernate supports auto-detection in JSE --> <properties> <property name="hibernate.archive.autodetection" value="class, hbm"/> <!-- Other properties --> </properties> </persistence-unit>
通过指定“class, hbm”作为值,自动检测过程会搜索带注释的类和 Hibernate 映射 XML 文件。这为显式列出
以上是Hibernate 可以自动检测 @Entity 类来替换 `persistence.xml` 中的 `` 元素吗?的详细内容。更多信息请关注PHP中文网其他相关文章!