diff --git a/reference/ko/modules/association_mapping.xml b/reference/ko/modules/association_mapping.xml index 03ba73c11f..c8064a879d 100644 --- a/reference/ko/modules/association_mapping.xml +++ b/reference/ko/modules/association_mapping.xml @@ -292,7 +292,7 @@ create table Address ( addressId bigint not null primary key ) 양방향 연관들 - + one to many / many to one @@ -323,6 +323,34 @@ create table Person ( personId bigint not null primary key, addressId bigint not null ) create table Address ( addressId bigint not null primary key ) ]]> + + + 만일 당신이 List(또는 다른 인덱싱 된 콜렉션)을 사용할 경우 당신은 foreign key의 + key 컬럼을 not null로 설정하고, Hibernate로 하여금 + 각각의 요소의 인덱스를 유지관리하기 위해 (update="false"와 + insert="false"를 설정함으로써 다른 측을 가상적으로 inverse로 만들어) + 그 콜렉션들 측으로부터 연관을 관리하도록 할 필요가 있다: + + + + + ... + + + + + + ... + + + + + +]]> @@ -477,7 +505,7 @@ create table Address ( addressId bigint not null primary key ) - + many to many @@ -488,7 +516,7 @@ create table Address ( addressId bigint not null primary key ) - + @@ -499,7 +527,7 @@ create table Address ( addressId bigint not null primary key ) - + @@ -518,7 +546,7 @@ create table Address ( addressId bigint not null primary key ) - + 보다 복잡한 연관 매핑들