hbm 파일의 두 태그가 일대일 및 일대일 및 일 대 일별로 고유 = "true"로 어떻게 다른가요? 방금 배운 쌍방향 매핑을 얻으려면 두 hbm files.cant에 하나씩 태그를 사용해야한다는 것을 배웠습니다. 최대 절전 모드에서 양방향 동작을 얻으려면 양쪽에 unique = true를 사용하여 많은 것을 넣었습니다 (둘 다 hbm)? 이 link에서1 대 1 대 다 대다 대 true = true의
, 내가
<!-- In One-to-one we cannot specify the foreign key column
that has to be filled up
<one-to-one name="person" class="PersonOTO_B" cascade="all"
constrained="true"> </one-to-one>
-->
<many-to-one name="person" column="P_ID" unique="true"
not-null="true" lazy="false" />
위의 이유 유효한 하나입니다 발견? 당신이 때 응용 프로그램이 시작하여 SQL 스키마를 생성하기 위해 최대 절전 모드를 사용하지 않는 경우 때
감사 Jayendra는
http://stackoverflow.com/questions/2452987/hibernate-why-use-many-to-one-to-represent-a-one-to-one –