From a5a0bdb2ece51874b82894d210ee4daab2c78251 Mon Sep 17 00:00:00 2001 From: JongDae Kim Date: Wed, 7 Sep 2005 11:22:49 +0000 Subject: [PATCH] Added bidi List example, Minor git-svn-id: https://svn.jboss.org/repos/hibernate/trunk/Hibernate3/doc@8112 1b8cb986-b30d-0410-93ca-fae66ebed9b2 --- reference/ko/modules/association_mapping.xml | 38 +++++++++++++++++--- 1 file changed, 33 insertions(+), 5 deletions(-) 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 ) - + 보다 복잡한 연관 매핑들