질문:
persistence.xml 파일에서
답변:
Hibernate의 자동 감지:
Hibernate의 자동 감지를 활성화하려면 Java SE에서는 표시된 대로 persistence.xml 파일에 hibernate.archive.autoDetection 속성을 추가합니다. 아래:
<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는 `persistence.xml`의 ` 요소를 대체하기 위해 @Entity 클래스를 자동 감지할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!