복붙노트

[SPRING] Hibernate에서 엔티티에 대한 Annotations와 XML 구성을 혼합 할 수 있습니까?

SPRING

Hibernate에서 엔티티에 대한 Annotations와 XML 구성을 혼합 할 수 있습니까?

그래서, 그 중 하나만 사용하는 대신 두 구성을 혼합 할 수 있습니까?

필자가 원하는 것은 Annotations로 모든 구성을 유지하고 XML로 테이블을 읽는 것입니다.

가능한가?

고마워.

편집하다: hbm.xml 파일은 어떻게됩니까? 나는 이것을 가지고있다.

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
    <class name="MyData" table="MyTable" >
    </class>
</hibernate-mapping>

그리고 dtd를 컴파일하지 마십시오.

해결법

  1. ==============================

    1.Hibernate docs (최신)

    Hibernate docs (최신)

  2. from https://stackoverflow.com/questions/8643166/in-hibernate-is-it-possible-to-mix-annotations-and-xml-configuration-for-an-ent by cc-by-sa and MIT license