做
問題:
在 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中文網其他相關文章!