|
Hibernate example source code file (collection_mapping.po)
This example Hibernate source code file (collection_mapping.po) is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.
The Hibernate collection_mapping.po source code
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-02-04T04:51:22\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: title
#, fuzzy, no-c-format
msgid "Collection mapping"
msgstr "ì½œë ‰ì…˜ 매핑들"
#. Tag: title
#, no-c-format
msgid "Persistent collections"
msgstr "ì˜ì† ì½œë ‰ì…˜ë“¤"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Hibernate requires that persistent collection-valued fields be declared as "
"an interface type. For example:"
msgstr ""
"예를 들어 Hibernate는 ì˜ì† ì½œë ‰ì…˜-ê°’ì„ ê°€ì§„ í•„ë“œë“¤ì´ ì¸í„°íŽ˜ì´ìŠ¤ 타입으로서 ì„ "
"ì–¸ë ê²ƒì„ í•„ìš”ë¡œ 한다:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The actual interface might be <literal>java.util.Set, "
"<literal>java.util.Collection, java.util.List, "
"<literal>java.util.Map, java.util.SortedSet, "
"<literal>java.util.SortedMap or anything you like (\"anything you "
"like\" means you will have to write an implementation of <literal>org."
"hibernate.usertype.UserCollectionType</literal>.)"
msgstr ""
"ì‹¤ì œ ì¸í„°íŽ˜ì´ìŠ¤ëŠ” <literal>java.util.Set, java.util."
"Collection</literal>, java.util.List, java.util."
"Map</literal>, java.util.SortedSet, java.util."
"SortedMap</literal> ë˜ëŠ” ë‹¹ì‹ ì´ ì¢‹ì•„í•˜ëŠ” ì–´ë–¤ ê²ƒì¼ ìˆ˜ 있다!(여기서 \"ë‹¹ì‹ ì´ "
"좋아하는 ì–´ë–¤ 것\"ì´ëž€ ë‹¹ì‹ ì´ <literal>org.hibernate.usertype."
"UserCollectionType</literal>ì— ëŒ€í•œ êµ¬í˜„ì„ ìž‘ì„±í•´ì•¼ í•¨ì„ ì˜ë¯¸í•œë‹¤.)"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Notice how the instance variable was initialized with an instance of "
"<literal>HashSet. This is the best way to initialize collection "
"valued properties of newly instantiated (non-persistent) instances. When you "
"make the instance persistent, by calling <literal>persist() for "
"example, Hibernate will actually replace the <literal>HashSet with "
"an instance of Hibernate's own implementation of <literal>Set. Be "
"aware of the following errors:"
msgstr ""
"우리가 <literal>HashSetì˜ ì¸ìŠ¤í„´ìŠ¤ë¥¼ 가진 ì¸ìŠ¤í„´ìŠ¤ 변수를 초기화 ì‹œ"
"ì¼°ë˜ ë°©ë²•ì„ ì£¼ëª©í•˜ë¼. ì´ê²ƒì€ ìƒˆë¡œì´ ì´ˆê¸°í™” ëœ(비-ì˜ì†) ì¸ìŠ¤í„´ìŠ¤ë“¤ì„ 가진 ì½œë ‰"
"ì…˜ ê°’ 프로í¼í‹°ë“¤ì„ 초기화 시키는 ìµœì„ ì˜ ë°©ë²•ì´ë‹¤. ë‹¹ì‹ ì´ -예를 들어 "
"<literal>persist()를 호출하여- ì¸ìŠ¤í„´ìŠ¤ë¥¼ ì˜ì†í™” 시킬 ë•Œ Hibernate"
"는 ì‹¤ì œë¡œ <literal>HashSetì„ Setì— ëŒ€í•œ "
"Hibernate ìžì‹ ì˜ êµ¬í˜„ì˜ ì¸ìŠ¤í„´ìŠ¤ë¡œ 대체시킬 것ì´ë‹¤. 다ìŒê³¼ ê°™ì€ ì˜¤ë¥˜ë“¤ì„ ê´€ì°°"
"하ë¼:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The persistent collections injected by Hibernate behave like "
"<literal>HashMap, HashSet, TreeMapTreeSet or ArrayList, "
"depending on the interface type."
msgstr ""
"Hibernateì— ì˜í•´ ë„ìž…ëœ ì˜ì† ì½œë ‰ì…˜ë“¤ì€ ì¸í„°íŽ˜ì´ìŠ¤ íƒ€ìž…ì— ë”°ë¼ "
"<literal>HashMap, HashSet, TreeMapTreeSet ë˜ëŠ” ArrayList와 ê°™"
"ì´ í–‰ìœ„í•œë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Collections instances have the usual behavior of value types. They are "
"automatically persisted when referenced by a persistent object and are "
"automatically deleted when unreferenced. If a collection is passed from one "
"persistent object to another, its elements might be moved from one table to "
"another. Two entities cannot share a reference to the same collection "
"instance. Due to the underlying relational model, collection-valued "
"properties do not support null value semantics. Hibernate does not "
"distinguish between a null collection reference and an empty collection."
msgstr ""
"ì½œë ‰ì…˜ ì¸ìŠ¤í„´ìŠ¤ë“¤ì€ value íƒ€ìž…ë“¤ì„ ê°€ì§„ 통ìƒì˜ íŠ¹ì§•ì„ ê°–ëŠ”ë‹¤. ê·¸ê²ƒë“¤ì€ ì˜ì† "
"ê°ì²´ì— ì˜í•´ 참조ë ë•Œ ìžë™ì 으로 ì˜ì†í™” ë˜ê³ 참조 í•´ì œë ë•Œ ìžë™ì 으로 ì‚ì œëœ"
"다. ë§Œì¼ í•˜ë‚˜ì˜ ì½œë ‰ì…˜ì´ í•˜ë‚˜ì˜ ì˜ì† ê°ì²´ë¡œë¶€í„° ë˜ ë‹¤ë¥¸ ì˜ì† ê°ì²´ë¡œ ì „ë‹¬ë "
"ë•Œ, ê·¸ê²ƒì˜ ìš”ì†Œë“¤ì€ í•˜ë‚˜ì˜ í…Œì´ë¸”로부터 다른 í…Œì´ë¸”ë¡œ ì´ë™ë 수 있다. ë‘ ê°œ"
"ì˜ ì—”í‹°í‹°ë“¤ì€ ë™ì¼í•œ ì½œë ‰ì…˜ ì¸ìŠ¤í„´ìŠ¤ì— 대한 참조를 ê³µìœ í•˜ì§€ 않는다. 기본 관계"
"형 모형 ë•Œë¬¸ì— ì½œë ‰ì…˜ ê°’ 프로í¼í‹°ë“¤ì€ null ê°’ ì˜ë¯¸ë“¤ì„ 지ì›í•˜ì§€ 않는다; "
"Hibernate는 null ì½œë ‰ì…˜ 참조와 ê³µë°±ì˜ ì½œë ‰ì…˜ 사ì´ë¥¼ 구별 짓지 않는다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Use persistent collections the same way you use ordinary Java collections. "
"However, please ensure you understand the semantics of bidirectional "
"associations (these are discussed later)."
msgstr ""
"ë‹¹ì‹ ì€ ì´ê²ƒì˜ ì–´ë–¤ ê²ƒì— ëŒ€í•´ 너무 ë§Žì´ ê±±ì •í•˜ì§€ ì•Šì•„ë„ ë 것ì´ë‹¤. ë‹¹ì‹ ì´ í†µìƒ"
"ì˜ ìžë°” ì½œë ‰ì…˜ë“¤ì„ ì‚¬ìš©í•˜ëŠ” 것과 ë™ì¼í•œ 방법으로 ì˜ì† ì½œë ‰ì…˜ë“¤ì„ ì‚¬ìš©í•˜ë¼. 단"
"지 ë‹¹ì‹ ì´ ì–‘ë°©í–¥ ì—°ê´€ê´€ê³„ë“¤ì— ëŒ€í•œ ì˜ë¯¸ë¥¼ 확실히 ì´í•´í•˜ë„ë¡ í•˜ë¼(ë‚˜ì¤‘ì— ë…¼ì˜"
"ë¨)."
#. Tag: title
#, no-c-format
msgid "Collection mappings"
msgstr "ì½œë ‰ì…˜ 매핑들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"There are quite a range of mappings that can be generated for collections "
"that cover many common relational models. We suggest you experiment with the "
"schema generation tool so that you understand how various mapping "
"declarations translate to database tables."
msgstr ""
"ë§Žì€ ê³µí†µëœ ê´€ê³„í˜• ëª¨í˜•ë“¤ì„ ë‹¤ë£¨ëŠ”, ì½œë ‰ì…˜ë“¤ì— ëŒ€í•´ ìƒì„±ë 수 있는 ë§¤í•‘ë“¤ì˜ "
"ì˜ì—ì´ ê½¤ 존재한다. 여러가지 매핑 ì„ ì–¸ë“¤ì´ ë°ì´í„°ë² ì´ìŠ¤ í…Œì´ë¸”들로 변환ë˜ëŠ” "
"ë°©ë²•ì„ ë‹¹ì‹ ì´ ëŠë¼ë ¤ë©´ 스키마 ìƒì„± ë„구로 ì‹¤í—˜í• ê²ƒì„ ìš°ë¦¬ëŠ” ì œì•ˆí•œë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The Hibernate mapping element used for mapping a collection depends upon the "
"type of interface. For example, a <literal><set> element is "
"used for mapping properties of type <literal>Set."
msgstr ""
"ì½œë ‰ì…˜ì„ ë§¤í•‘í•˜ëŠ”ë° ì‚¬ìš©ë˜ëŠ” Hiberante 매핑 요소는 ì¸í„°íŽ˜ì´ìŠ¤ì˜ íƒ€ìž…ì— ì˜ì¡´í•œ"
"다. 예를 들어<literal><set> 요소는 Set 타"
"ìž…ì˜ ë§¤í•‘ 프로í¼í‹°ë“¤ì— 사용ëœë‹¤"
#. Tag: para
#, no-c-format
msgid ""
"Apart from <literal><set>, there is also <"
"list></literal>, <map>, <bag><array> and <primitive-"
"array></literal> mapping elements. The <map> "
"element is representative:"
msgstr ""
"<literal><set>과는 별ë„ë¡œ, ë˜í•œ <list><map>, <bag>, "
"<literal><array>, ê·¸ë¦¬ê³ <map> 매핑 "
"ìš”ì†Œë“¤ì´ ì¡´ìž¬í•œë‹¤. <literal><map> 요소가 대표ì ì´ë‹¤:"
#. Tag: para
#, fuzzy, no-c-format
msgid "<literal>name: the collection property name"
msgstr "<literal>name ì½œë ‰ì…˜ 프로í¼í‹° ì´ë¦„"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>table (optional - defaults to property name): the name of "
"the collection table. It is not used for one-to-many associations."
msgstr ""
"<literal>table (옵션 - ë””í´íŠ¸ëŠ” 프로í¼í‹° ì´ë¦„) ì½œë ‰ì…˜ í…Œì´ë¸”ì˜ ì´ë¦„"
"(one-to-many ì—°ê´€ê´€ê³„ë“¤ì— ëŒ€í•´ì„œëŠ” 사용ë˜ì§€ ì•ŠìŒ)"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>schema (optional): the name of a table schema to override "
"the schema declared on the root element"
msgstr ""
"<literal>schema (옵션) 루트 요소 ìƒì— ì„ ì–¸ëœ ìŠ¤í‚¤ë§ˆë¥¼ 오버ë¼ì´ë“œ ì‹œ"
"키는 í…Œì´ë¸” ìŠ¤í‚¤ë§ˆì˜ ì´ë¦„"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>lazy (optional - defaults to true): "
"disables lazy fetching and specifies that the association is always eagerly "
"fetched. It can also be used to enable \"extra-lazy\" fetching where most "
"operations do not initialize the collection. This is suitable for large "
"collections."
msgstr ""
"<literal>lazy (옵션 - ë””í´íŠ¸ëŠ” true)는 lazy 페ì¹"
"ì„ ì‚¬ìš© 불가능하ë„ë¡ í•˜ê³ ê·¸ ì—°ê´€ì´ í•ìƒ eagerly 페치ë¨ì„ ì§€ì •í•˜ëŠ”ë° , ë˜ëŠ” "
"ëŒ€ë¶€ë¶„ì˜ ì—°ì‚°ë“¤ì´ ì½œë ‰ì…˜ì„ ì´ˆê¸°í™”ì‹œí‚¤ì§€ 않는 ê³³ì—ì„œ \"extra-lazy\" 페ì¹ì„ ì´"
"ìš© 가능하ë„ë¡ í•˜ëŠ”ë°(매우 í° ì½œë ‰ì…˜ë“¤ì— ì 당함) 사용ë 수 있다"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>inverse (optional - defaults to false (옵션 - ë””í´íŠ¸ëŠ” false) ì´ ì½œë ‰"
"ì…˜ì„ ì–‘ë°©í–¥ ì—°ê´€ê´€ê³„ì˜ \"inverse\" ë(end)으로 표시한다"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>cascade (optional - defaults to none): "
"enables operations to cascade to child entities."
msgstr ""
"<literal>cascade (옵션 - ë””í´íŠ¸ëŠ” none) 오í¼ë ˆì´"
"ì…˜ë“¤ì´ ìžì‹ ì—”í‹°í‹°ë“¤ì— ëŒ€í•´ 케스케ì´ë“œí•˜ëŠ” ê²ƒì„ ì´ìš© 가능하게 한다"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>sort (optional): specifies a sorted collection with "
"<literal>natural sort order or a given comparator class."
msgstr ""
"<literal>sort (옵션) natural ì •ë ¬ 순서로 ì •ë ¬ëœ"
"(sorted) ì½œë ‰ì…˜ ë˜ëŠ” 주어진 comparator í´ëž˜ìŠ¤ë¥¼ ì§€ì •í•œë‹¤"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>order-by (optional, JDK1.4 only): specifies a table "
"column or columns that define the iteration order of the <literal>MapSet or bag, together with an optional "
"<literal>asc or desc."
msgstr ""
"<literal>order-by (옵션, JDK1.4ì—서만) asc ë˜ëŠ” "
"<literal>desc 옵션과 함께 Map, Set (optional): specifies an arbitrary SQL "
"<literal>WHERE condition that is used when retrieving or removing "
"the collection. This is useful if the collection needs to contain only a "
"subset of the available data."
msgstr ""
"<literal>where (옵션) ì½œë ‰ì…˜ì„ ê²€ìƒ‰í•˜ê±°ë‚˜ ì œê±°í• ë•Œ 사용ë ìž„ì˜ì "
"ì¸ SQL <literal>WHERE ì¡°ê±´ì„ ì§€ì •í•œë‹¤ (ì½œë ‰ì…˜ì´ ì˜¤ì§ ì´ìš© 가능한 ë°"
"ì´í„°ì˜ 부분집합 ë§Œì„ í¬í•¨í• ê²½ìš°ì— ìœ ìš©í•˜ë‹¤)"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>fetch (optional, defaults to select): "
"chooses between outer-join fetching, fetching by sequential select, and "
"fetching by sequential subselect."
msgstr ""
"<literal>fetch (옵션, ë””í´íŠ¸ëŠ” select) outer-"
"join 페ì¹, sequential select 페ì¹, ê·¸ë¦¬ê³ sequential subselect íŽ˜ì¹ ì‚¬ì´ì—ì„œ "
"ì„ íƒí•˜ë¼."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>batch-size (optional, defaults to 1): "
"specifies a \"batch size\" for lazily fetching instances of this collection."
msgstr ""
"<literal>batch-size (옵션, ë””í´íŠ¸ëŠ” 1) ì´ ì½œë ‰ì…˜"
"ì˜ lazily fetching ì¸ìŠ¤í„´ìŠ¤ì— 대해 \"배치 사ì´ì¦ˆ\"를 ì§€ì •í•˜ë¼."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>access (optional - defaults to property (옵션 - ë””í´íŠ¸ëŠ” property): "
"Hibernateê°€ ì½œë ‰ì…˜ 프로í¼í‹° ê°’ì— ì ‘ê·¼í•˜ëŠ”ë° ì‚¬ìš©í• ë°©ë„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>optimistic-lock (optional - defaults to true (옵션 - ë””í´íŠ¸ëŠ” true (optional - defaults to true): "
"a value of <literal>false specifies that the elements of the "
"collection never change. This allows for minor performance optimization in "
"some cases."
msgstr ""
"<literal>mutable (옵션 - ë””í´íŠ¸ëŠ” true): "
"<literal>false ê°’ì€ ì½œë ‰ì…˜ì˜ ìš”ì†Œë“¤ì´ ê²°ì½” 변경ë˜ì§€ ì•ŠìŒì„ ì§€ì •í•œ"
"다. (몇몇 경우들ì—ì„œ 마ì´ë„ˆ í¼í¬ë¨¼ìŠ¤ 최ì í™”)."
#. Tag: title
#, no-c-format
msgid "Collection foreign keys"
msgstr "ì½œë ‰ì…˜ foreign 키들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Collection instances are distinguished in the database by the foreign key of "
"the entity that owns the collection. This foreign key is referred to as the "
"<emphasis>collection key column, or columns, of the collection "
"table. The collection key column is mapped by the <literal><key> ìš”ì†Œì— ì˜í•´ 매핑ëœë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"There can be a nullability constraint on the foreign key column. For most "
"collections, this is implied. For unidirectional one-to-many associations, "
"the foreign key column is nullable by default, so you may need to specify "
"<literal>not-null=\"true\"."
msgstr ""
"foreign 키 ì»¬ëŸ¼ì— ëŒ€í•œ null 허용 가능 ì»¨ìŠ¤íŠ¸ë ˆì¸íŠ¸ê°€ ì¡´ìž¬í• ìˆ˜ 있다. 대부분"
"ì˜ ì½œë ‰ì…˜ë“¤ì— ëŒ€í•´, ì´ê²ƒì´ 당연히 수반ëœë‹¤. 단방향 one to many ì—°ê´€ë“¤ì˜ ê²½"
"ìš°, foreign 키는 ë””í´íŠ¸ë¡œ null 허용 가능하여서, ë‹¹ì‹ ì€ <literal>not-null="
"\"true\"</literal>를 ì§€ì •í• í•„ìš”ê°€ ìžˆì„ ìˆ˜ 있다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The foreign key constraint can use <literal>ON DELETE CASCADE."
msgstr ""
"foreign 키 ì»¨ìŠ¤íŠ¸ë ˆì¸íŠ¸ëŠ” <literal>ON DELETE CASCADE를 ì‚¬ìš©í• ìˆ˜ë„ "
"있다."
#. Tag: para
#, no-c-format
msgid ""
"See the previous chapter for a full definition of the <literal><key> ìš”ì†Œì— ëŒ€í•œ ì „ì²´ ì •ì˜ëŠ” ì•ž ìž¥ì„ ë³´ë¼."
#. Tag: title
#, no-c-format
msgid "Collection elements"
msgstr "ì½œë ‰ì…˜ 요소들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Collections can contain almost any other Hibernate type, including: basic "
"types, custom types, components and references to other entities. This is an "
"important distinction. An object in a collection might be handled with "
"\"value\" semantics (its life cycle fully depends on the collection owner), "
"or it might be a reference to another entity with its own life cycle. In the "
"latter case, only the \"link\" between the two objects is considered to be a "
"state held by the collection."
msgstr ""
"ì½œë ‰ì…˜ë“¤ì€ ëª¨ë“ ê¸°ë³¸ 타입들, ì»´í¬ë„ŒíŠ¸ë“¤, ê·¸ë¦¬ê³ ë¬¼ë¡ ë‹¤ë¥¸ ì—”í‹°í‹°ë“¤ì— ëŒ€í•œ ì°¸"
"ì¡°ë“¤ì„ í¬í•¨í•˜ì—¬ ê±°ì˜ ëŒ€ë¶€ë¶„ì˜ ì–´ë–¤ 다른 Hibernate íƒ€ìž…ì„ í¬í•¨í• ìˆ˜ë„ ìžˆë‹¤. ì´"
"ê²ƒì€ ì¤‘ìš”í•œ 구분ì´ë‹¤: ì½œë ‰ì…˜ ë‚´ì— ìžˆëŠ” ê°ì²´ëŠ” \"ê°’(value)\" ì˜ë¯¸ë¡œ 처리ë 수"
"ë„ ìžˆê±°ë‚˜(ê·¸ê²ƒì˜ ìƒëª…주기는 ì½œë ‰ì…˜ ì†Œìœ ìžì— ì˜ì¡´í•œë‹¤) ê·¸ê²ƒì€ ê·¸ê²ƒ ìžì‹ ì˜ ìƒëª…"
"주기를 가진 ë˜ ë‹¤ë¥¸ ì—”í‹°í‹°ì— ëŒ€í•œ ì°¸ì¡°ì¼ ìˆ˜ 있다. 후ìžì˜ 경우, ë‘ ê°œì˜ ê°ì²´"
"들 사ì´ì˜ \"ë§í¬\" ë§Œì´ ê·¸ ì½œë ‰ì…˜ì— ì˜í•´ ì†Œìœ ëœ ìƒíƒœë¡œ 간주ëœë‹¤."
#. Tag: para
#, no-c-format
msgid ""
"The contained type is referred to as the <emphasis>collection element type<element><composite-element>, or in the case of "
"entity references, with <literal><one-to-many> or "
"<literal><many-to-many>. The first two map elements with "
"value semantics, the next two are used to map entity associations."
msgstr ""
"í¬í•¨ëœ íƒ€ìž…ì€ ì½œë ‰ì…˜ 요소 타입으로서 ë¶ˆë ¤ì§„ë‹¤. ì½œë ‰ì…˜ ìš”ì†Œë“¤ì€ <literal><"
"element></literal> ë˜ëŠ” <composite-element>ì— ì˜"
"í•´ 매핑ë˜ê±°ë‚˜, 엔티티 ì°¸ì¡°ë“¤ì˜ ê²½ìš°ì— <literal><one-to-many> "
"ë˜ëŠ” <literal><many-to-many>로서 매핑ëœë‹¤. ì•žì˜ ë‘ ê°œëŠ” "
"value ì˜ë¯¸ë¥¼ 가진 ìš”ì†Œë“¤ì„ ë§¤í•‘ì‹œí‚¤ê³ , ë’¤ì˜ ë‘개는 엔티티 ì—°ê´€ë“¤ì„ ë§¤í•‘í•˜ëŠ”"
"ë° ì‚¬ìš©ëœë‹¤."
#. Tag: title
#, no-c-format
msgid "Indexed collections"
msgstr "ì¸ë±ì‹± ëœ ì½œë ‰ì…˜ë“¤"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"All collection mappings, except those with set and bag semantics, need an "
"<emphasis>index column in the collection table. An index column "
"is a column that maps to an array index, or <literal>List index, "
"or <literal>Map key. The index of a Map may be "
"of any basic type, mapped with <literal><map-key>. It can be "
"an entity reference mapped with <literal><map-key-many-to-many><composite-"
"map-key></literal>. The index of an array or list is always of type "
"<literal>integer and is mapped using the <list-"
"index></literal> element. The mapped column contains sequential integers "
"that are numbered from zero by default."
msgstr ""
"set ê³¼ bag ì˜ë¯¸ë“¤ì„ 가진 ê²ƒë“¤ì„ ì œì™¸í•˜ë©´, ëª¨ë“ ì½œë ‰ì…˜ ë§¤í•‘ë“¤ì€ ì½œë ‰ì…˜ í…Œì´ë¸” "
"ë‚´ì— <emphasis>ì¸ë±ìŠ¤ 컬럼- ë°°ì—´ ì¸ë±ìŠ¤, ë˜ëŠ” ListMap 키로 매핑ë˜ëŠ” 컬럼-ì„ í•„ìš”ë¡œ í•œ"
"다. <literal>Mapì˜ ì¸ë±ìŠ¤ëŠ” <map-key>ë¡œ 매"
"í•‘ëœ, ì–´ë–¤ 기본 íƒ€ìž…ì¼ ìˆ˜ ìžˆê³ , ê·¸ê²ƒì€ <literal><map-key-many-to-many>"
"</literal>ë¡œ ë§¤í•‘ëœ ì—”í‹°í‹° ì°¸ì¡°ì¼ ìˆ˜ 있거나, ê·¸ê²ƒì€ <composite-"
"map-key></literal>ë¡œ ë§¤í•‘ëœ composite íƒ€ìž…ì¼ ìˆ˜ 있다. ë°°ì—´ ë˜ëŠ” ë¦¬ìŠ¤íŠ¸ì˜ "
"ì¸ë±ìŠ¤ëŠ” í•ìƒ <literal>integer 타입ì´ê³ <list-index>"
"</literal> 요소를 사용하여 매핑ëœë‹¤. ë§¤í•‘ëœ ì»¬ëŸ¼ì€ ìˆœì°¨ì ì¸ ì •ìˆ˜ë“¤ì„ í¬í•¨í•œë‹¤"
"(ë””í´íŠ¸ë¡œ 0ì—ì„œ 시작하는 번호가 붙여ì§)."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>column_name (required): the name of the column holding "
"the collection index values."
msgstr ""
"<literal>column_name (필수): ì½œë ‰ì…˜ ì¸ë±ìŠ¤ ê°’ë“¤ì„ ë³´ê´€í•˜ëŠ” ì»¬ëŸ¼ì˜ "
"ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>base (optional - defaults to 0): the "
"value of the index column that corresponds to the first element of the list "
"or array."
msgstr ""
"<literal>base (옵션, ë””í´íŠ¸ëŠ” 0): 리스트 ë˜ëŠ” ë°°"
"ì—´ì˜ ì²« 번째 ìš”ì†Œì— ëŒ€ì‘하는 ì¸ë±ìŠ¤ ì»¬ëŸ¼ì˜ ê°’."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>column (optional): the name of the column holding the "
"collection index values."
msgstr ""
"<literal>column (옵션): ì½œë ‰ì…˜ ì¸ë±ìŠ¤ ê°’ë“¤ì„ ë³´ê´€í•˜ëŠ” ì»¬ëŸ¼ì˜ ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>formula (optional): a SQL formula used to evaluate the "
"key of the map."
msgstr ""
"<literal>formula (옵션): mapì˜ í‚¤ë¥¼ í‰ê°€í•˜ëŠ”ë° ì‚¬ìš©ë˜ëŠ” SQL "
"formula."
#. Tag: para
#, fuzzy, no-c-format
msgid "<literal>type (required): the type of the map keys."
msgstr "<literal>type (필수): The type of the map í‚¤ë“¤ì˜ íƒ€ìž…"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>column (optional): the name of the foreign key column for "
"the collection index values."
msgstr ""
"<literal>column (옵션): ì½œë ‰ì…˜ ì¸ë±ìŠ¤ ê°’ë“¤ì— ëŒ€í•œ foreign 키 컬럼"
"ì˜ ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>formula (optional): a SQ formula used to evaluate the "
"foreign key of the map key."
msgstr ""
"<literal>formula (옵션): mapì˜ foreign 키를 í‰ê°€í•˜ëŠ”ë° ì‚¬ìš©ë˜ëŠ” "
"SQL formula."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>class (required): the entity class used as the map key."
msgstr "<literal>class (필수): map 키로서 사용ë˜ëŠ” 엔티티 í´ëž˜ìŠ¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"If your table does not have an index column, and you still wish to use "
"<literal>List as the property type, you can map the property as a "
"Hibernate <emphasis><bag>. A bag does not retain its order "
"when it is retrieved from the database, but it can be optionally sorted or "
"ordered."
msgstr ""
"ë§Œì¼ ë‹¹ì‹ ì˜ í…Œì´ë¸”ì´ ì¸ë±ìŠ¤ ì»¬ëŸ¼ì„ ê°€ì§€ ì•Šê³ , ë‹¹ì‹ ì´ ì—¬ì „ížˆ 프로í¼í‹° 타입으로"
"ì„œ <literal>List를 ì‚¬ìš©í•˜ê³ ìž ì›í• 경우, ë‹¹ì‹ ì€ ê·¸ 프로í¼í‹°ë¥¼ "
"Hibernate <emphasis><bag>으로서 매핑해야 한다. bagì´ ë°ì´í„°"
"ë² ì´ìŠ¤ë¡œë¶€í„° 검색ë ë•Œ ê·¸ê²ƒì€ ê·¸ê²ƒì˜ ìˆœì„œë¥¼ ë³´ìœ í•˜ì§€ 않지만, ê·¸ê²ƒì€ ì„ íƒì 으"
"ë¡œ ì •ë ¬(sorting)ë˜ê±°ë‚˜ orderingë ìˆ˜ë„ ìžˆë‹¤."
#. Tag: title
#, no-c-format
msgid "Collections of values and many-to-many associations"
msgstr "ê°’ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜ë“¤ê³¼ many-to-many 연관들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Any collection of values or many-to-many associations requires a dedicated "
"<emphasis>collection table with a foreign key column or columns, "
"<emphasis>collection element column or columns, and possibly an "
"index column or columns."
msgstr ""
"ì–´ë–¤ ê°’ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜ ë˜ëŠ” many-to-many ì—°ê´€ì€ foreign 키 컬럼ì´ë‚˜ 컬럼들, "
"<emphasis>ì½œë ‰ì…˜ 요소 컬럼ì´ë‚˜ 컬럼들 ê·¸ë¦¬ê³ ê°€ëŠ¥í•˜ë©´ ì¸ë±ìŠ¤ 컬럼"
"들ì´ë‚˜ ì»¬ëŸ¼ë“¤ì„ ê°€ì§„ ì „ìš© <emphasis>ì½œë ‰ì…˜ í…Œì´ë¸”ì„ í•„ìš”ë¡œ 한다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"For a collection of values use the <literal><element> tag. "
"For example:"
msgstr ""
"ê°’ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜ì˜ ê²½ìš°, 우리는 <literal><element> 태그를 "
"사용한다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>column (optional): the name of the column holding the "
"collection element values."
msgstr ""
"<literal>column (옵션): ì½œë ‰ì…˜ 요소 ê°’ë“¤ì„ ì†Œìœ í•˜ëŠ” ì»¬ëŸ¼ì˜ ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>formula (optional): an SQL formula used to evaluate the "
"element."
msgstr ""
"<literal>formula (옵션): 요소를 í‰ê°€í•˜ëŠ”ë° ì‚¬ìš©ë˜ëŠ” SQL formula."
#. Tag: para
#, fuzzy, no-c-format
msgid "<literal>type (required): the type of the collection element."
msgstr "<literal>type (필수): ì½œë ‰ì…˜ ìš”ì†Œì˜ íƒ€ìž…."
#. Tag: para
#, no-c-format
msgid ""
"A <emphasis>many-to-many association is specified using the "
"<literal><many-to-many> element."
msgstr ""
"<emphasis>many-to-many association ì—°ê´€ì€ <many-to-"
"many></literal> 요소를 사용하여 ì§€ì •ëœë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>column (optional): the name of the element foreign key "
"column."
msgstr "<literal>column (옵션): 요소 foreign 키 ì»¬ëŸ¼ì˜ ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>formula (optional): an SQL formula used to evaluate the "
"element foreign key value."
msgstr ""
"<literal>formula (옵션): 요소 foreign 키 ê°’ì„ í‰ê°€í•˜ëŠ”ë° ì‚¬ìš©ë˜ëŠ” "
"SQL formula."
#. Tag: para
#, fuzzy, no-c-format
msgid "<literal>class (required): the name of the associated class."
msgstr "<literal>class (필수): ì—°ê´€ëœ í´ëž˜ìŠ¤ì˜ ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>fetch (optional - defaults to join): "
"enables outer-join or sequential select fetching for this association. This "
"is a special case; for full eager fetching in a single <literal>SELECT fetching,not only of the collection "
"itself, but also with this attribute on the <literal><many-to-many> (옵션 - ë””í´íŠ¸ëŠ” join): ì´ ì—°ê´€"
"ì— ëŒ€í•´ outer-join íŽ˜ì¹ ë˜ëŠ” sequential select 페ì¹ì„ ì´ìš© 가능하게 ë§Œë“ ë‹¤. "
"ì´ê²ƒì€ 특별한 경우ì´ë‹¤; 엔티티 ê·¸ë¦¬ê³ ë‹¤ë¥¸ 엔티티들과 ê·¸ê²ƒì˜ many-to-many ê´€"
"ê³„ë“¤ì— ëŒ€í•œ (í•˜ë‚˜ì˜ <literal>SELECT ë‚´ì—ì„œ) ì „ì²´ eager 페ì¹ì˜ ê²½"
"ìš°, ë‹¹ì‹ ì€ ì½œë ‰ì…˜ ê·¸ ìžì²´ì— 대해서 ë¿ë§Œ ì•„ë‹ˆë¼ ë‚´í¬ëœ 요소 <literal><many-"
"to-many></literal> ìƒì˜ ì´ ì†ì„±ì— 대해 join 페ì¹ì„ ì´"
"ìš© 가능하게 í• ê²ƒì´ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>unique (optional): enables the DDL generation of a unique "
"constraint for the foreign-key column. This makes the association "
"multiplicity effectively one-to-many."
msgstr ""
"<literal>unique (옵션): foreign-key ì»¬ëŸ¼ì— ëŒ€í•œ ìœ ì¼ ì»¨ìŠ¤íŠ¸ë ˆì¸íŠ¸"
"ì˜ DDL ìƒì„±ì„ 가능하ë„ë¡ í•œë‹¤. ì´ê²ƒì€ ì—°ê´€ 다중성 (association multiplicity)"
"ì„ íš¨ìœ¨ì 으로 one to manyë¡œ ë§Œë“ ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>not-found (optional - defaults to exception will treat a missing row as a null "
"association."
msgstr ""
"<literal>not-found (옵션 - ë””í´íŠ¸ëŠ” exception): "
"누ë½ëœ í–‰ë“¤ì„ ì°¸ì¡°í•˜ëŠ” foreign í‚¤ë“¤ì´ ì–´ë–»ê²Œ 처리ë 것ì¸ì§€ë¥¼ ì§€ì •í•œë‹¤: "
"<literal>ignore는 누ë½ëœ í•œ í–‰ì„ í•œ ê°œì˜ ì—°ê´€ìœ¼ë¡œ 다룰 것ì´ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>entity-name (optional): the entity name of the associated "
"class, as an alternative to <literal>class."
msgstr ""
"#-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#\n"
"<literal>entity-name (옵션): classì— ëŒ€í•œ 하나"
"ì˜ ëŒ€ì•ˆìœ¼ë¡œì„œ, ì—°ê´€ëœ í´ëž˜ìŠ¤ì˜ 엔티티 ì´ë¦„.\n"
"#-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#\n"
"<literal>entity-name (옵션): classì— ëŒ€í•œ 대안으"
"로서, ì—°ê´€ëœ í´ëž˜ìŠ¤ì˜ 엔티티 ì´ë¦„."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>property-ref (optional): the name of a property of the "
"associated class that is joined to this foreign key. If not specified, the "
"primary key of the associated class is used."
msgstr ""
"<literal>property-ref: (옵션) ì´ foreign í‚¤ì— ì¡°ì¸ëœ ì—°ê´€ í´ëž˜ìŠ¤ì˜ "
"프로í¼í‹°ì˜ ì´ë¦„. ì§€ì •ë˜ì§€ ì•Šì„ ê²½ìš°, ì—°ê´€ í´ëž˜ìŠ¤ì˜ 프ë¼ì´ë¨¸ë¦¬ 키가 사용ëœë‹¤."
#. Tag: para
#, no-c-format
msgid "Here are some examples."
msgstr ""
#. Tag: para
#, no-c-format
msgid "A set of strings:"
msgstr ""
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A bag containing integers with an iteration order determined by the "
"<literal>order-by attribute:"
msgstr ""
"(<literal>order-by ì†ì„±ì— ì˜í•´ ê²°ì •ë˜ëŠ” 반복 순서를 가진) ì •ìˆ˜ë“¤ì„ "
"í¬í•¨í•˜ëŠ” bag :"
#. Tag: para
#, fuzzy, no-c-format
msgid "An array of entities, in this case, a many-to-many association:"
msgstr "ì—”í‹°í‹°ë“¤ì„ ê°€ì§„ ë°°ì—´ - ì´ ê²½ìš°ì—, many to many ì—°ê´€ :"
#. Tag: para
#, no-c-format
msgid "A map from string indices to dates:"
msgstr "ë‚ ì§œë“¤ì— ëŒ€í•œ 문ìžì—´ ì¸ë±ìŠ¤ë“¤ì„ 가진 map :"
#. Tag: para
#, fuzzy, no-c-format
msgid "A list of components (this is discussed in the next chapter):"
msgstr "ì»´í¬ë„ŒíŠ¸ë“¤ì˜ 리스트(ë‹¤ìŒ ìž¥ì—ì„œ ë…¼ì˜ë¨):"
#. Tag: title
#, no-c-format
msgid "One-to-many associations"
msgstr "One-to-many 연관들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A <emphasis>one-to-many association links the tables of two "
"classes via a foreign key with no intervening collection table. This mapping "
"loses certain semantics of normal Java collections:"
msgstr ""
"<emphasis>one to many ì—°ê´€ì€ ì¤‘ìž¬í•˜ëŠ” ì½œë ‰ì…˜ í…Œì´ë¸” ì—†ì´ foreign "
"키를 통해 ë‘ ê°œì˜ í´ëž˜ìŠ¤ë“¤ì˜ í…Œì´ë¸”ë“¤ì„ ì—°ê²°ì‹œí‚¨ë‹¤. ì´ ë§¤í•‘ì€ í†µìƒì˜ ìžë°” 콜"
"ë ‰ì…˜ë“¤ì˜ ì–´ë–¤ ì˜ë¯¸ë¥¼ ìƒì‹¤í•œë‹¤:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"An instance of the contained entity class cannot belong to more than one "
"instance of the collection."
msgstr ""
"í¬í•¨ëœ 엔티티 í´ëž˜ìŠ¤ì˜ ì¸ìŠ¤í„´ìŠ¤ëŠ” ê·¸ ì½œë ‰ì…˜ì˜ í•˜ë‚˜ ì´ìƒì˜ ì¸ìŠ¤í„´ìŠ¤ì— ì†í•˜ì§€ "
"ì•Šì„ ìˆ˜ 있다"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"An instance of the contained entity class cannot appear at more than one "
"value of the collection index."
msgstr ""
"í¬í•¨ëœ 엔티티 í´ëž˜ìŠ¤ì˜ ì¸ìŠ¤í„´ìŠ¤ëŠ” ì½œë ‰ì…˜ ì¸ë±ìŠ¤ì˜ 하나 ì´ìƒì˜ ê°’ì—ì„œ 나타나"
"지 ì•Šì„ ìˆ˜ 있다"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"An association from <literal>Product to Part "
"requires the existence of a foreign key column and possibly an index column "
"to the <literal>Part table. A <one-to-many>로부터 Partë¡œì˜ ì—°ê´€ì€ foreign "
"키 컬럼과 <literal>Part í…Œì´ë¸”ì— ëŒ€í•œ ì¸ë±ìŠ¤ ì»¬ëŸ¼ì˜ ì¡´ìž¬ë¥¼ 필요로 "
"한다. <literal><one-to-many> 태그는 ì´ê²ƒì´ one to many 연관임"
"ì„ ë‚˜íƒ€ë‚¸ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"<literal>not-found (optional - defaults to exception will treat a missing row as a null "
"association."
msgstr ""
"<literal>not-found (옵션 - ë””í´íŠ¸ëŠ” exception): "
"누ë½ëœ í–‰ë“¤ì„ ì°¸ì¡°í•˜ëŠ” ìºì‹œëœ ì‹ë³„ìžë“¤ì´ 어떻게 처리ë 것ì¸ì§€ë¥¼ ì§€ì •í•œë‹¤: "
"<literal>ignore는 누ë½ëœ í•œ í–‰ì„ í•œ ê°œì˜ ì—°ê´€ìœ¼ë¡œ 다룰 것ì´ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The <literal><one-to-many> element does not need to declare "
"any columns. Nor is it necessary to specify the <literal>table "
"name anywhere."
msgstr ""
"<literal><one-to-many> 요소는 ì–´ë–¤ ì»¬ëŸ¼ë“¤ì„ ì„ ì–¸í•˜ëŠ”ë° í•„ìš”í•˜"
"지 ì•ŠìŒì„ 주목하ë¼. ì–´ë”˜ê°€ì— <literal>table ì´ë¦„ì„ ì§€ì •í•˜ëŠ” ê²ƒë„ í•„"
"수ì ì´ì§€ 않다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"If the foreign key column of a <literal><one-to-many> "
"association is declared <literal>NOT NULL, you must declare the "
"<literal><key> mapping not-null=\"true\" "
"or <emphasis>use a bidirectional association with the collection "
"mapping marked <literal>inverse=\"true\". See the discussion of "
"bidirectional associations later in this chapter for more information."
msgstr ""
"<emphasis>매우 중요한 노트: ë§Œì¼ <one-to-many>NOT NULLë¡œ ì„ ì–¸ë 경우, "
"ë‹¹ì‹ ì€ <literal><key> ë§¤í•‘ì„ not-null=\"true\"inverse=\"true\"ë¡œ 마í¬ëœ ì½œë ‰"
"ì…˜ ë§¤í•‘ì„ ê°€ì§„ <emphasis>ì–‘ë°©í–¥ ì—°ê´€ì„ ì‚¬ìš©í•´ì•¼ 한다. ì–‘ë°©í–¥ ì—°ê´€"
"ë“¤ì— ëŒ€í•œ ë…¼ì˜ëŠ” ì´ ìž¥ì˜ ë’·ë¶€ë¶„ì„ ë³´ë¼."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The following example shows a map of <literal>Part entities by "
"name, where <literal>partName is a persistent property of "
"<literal>Part. Notice the use of a formula-based index:"
msgstr ""
"ì´ ì˜ˆì œëŠ” name으로 <literal>Part ì—”í‹°í‹°ë“¤ì„ ê°€ì§„ mapì„ ë³´ì—¬ì¤€ë‹¤(ì—¬"
"기서 <literal>partNameì€ Partì˜ ì˜ì† 프로í¼í‹°ì´"
"다). formula-기반 indexì˜ ì‚¬ìš©ì„ ì£¼ëª©í•˜ë¼."
#. Tag: title
#, no-c-format
msgid "Advanced collection mappings"
msgstr "ê°œì„ ëœ ì½œë ‰ì…˜ 매핑들"
#. Tag: title
#, no-c-format
msgid "Sorted collections"
msgstr "Sorted ì½œë ‰ì…˜ë“¤"
#. Tag: para
#, no-c-format
msgid ""
"Hibernate supports collections implementing <literal>java.util.SortedMapjava.util.SortedSet. You must specify a "
"comparator in the mapping file:"
msgstr ""
"Hibernate는 <literal>java.util.SortedMap과 java.util."
"SortedSet</literal>를 구현하는 ì½œë ‰ì…˜ë“¤ì„ ì§€ì›í•œë‹¤. ë‹¹ì‹ ì€ ë§¤í•‘ íŒŒì¼ ì†ì— 하"
"ë‚˜ì˜ comparator를 ì§€ì •í•´ì•¼ 한다:"
#. Tag: para
#, no-c-format
msgid ""
"Allowed values of the <literal>sort attribute are "
"<literal>unsorted, natural and the name of a "
"class implementing <literal>java.util.Comparator."
msgstr ""
"<literal>sort ì†ì„±ì— 허용ë˜ëŠ” ê°’ë“¤ì€ unsorted, "
"<literal>natural, ê·¸ë¦¬ê³ java.util.Comparator를 "
"구현하는 í´ëž˜ìŠ¤ì˜ ì´ë¦„ì´ë‹¤."
#. Tag: para
#, no-c-format
msgid ""
"Sorted collections actually behave like <literal>java.util.TreeSet "
"or <literal>java.util.TreeMap."
msgstr ""
"Sorted ì½œë ‰ì…˜ë“¤ì€ <literal>java.util.TreeSet ë˜ëŠ” java."
"util.TreeMap</literal>처럼 í–‰ë™í•œë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"If you want the database itself to order the collection elements, use the "
"<literal>order-by attribute of set, "
"<literal>bag or map mappings. This solution is "
"only available under JDK 1.4 or higher and is implemented using "
"<literal>LinkedHashSet or LinkedHashMap. This "
"performs the ordering in the SQL query and not in the memory."
msgstr ""
"ë§Œì¼ ë‹¹ì‹ ì´ ë°ì´í„°ë² ì´ìŠ¤ ê·¸ ìžì²´ê°€ ì½œë ‰ì…˜ ìš”ì†Œë“¤ì„ ìˆœì„œì§€ìš°ë„ë¡(order)ì›í• ê²½"
"ìš° <literal>set, bag ë˜ëŠ”map "
"ë§¤í•‘ë“¤ì— ëŒ€í•´ <literal>order-by ì†ì„±ì„ 사용하ë¼. ì´ í•´ê²°ì±…ì€ JDK "
"1.4 ì´ìƒì˜ ë²„ì „ì—서만 ì´ìš© 가능하다(ê·¸ê²ƒì€ <literal>LinkedHashSet "
"ë˜ëŠ” <literal>LinkedHashMapì„ ì‚¬ìš©í•˜ì—¬ 구현ëœë‹¤). ì´ê²ƒì€ 메모리 ë‚´"
"ê°€ ì•„ë‹Œ, SQL ì§ˆì˜ ë‚´ì—ì„œ 순서지움(ordering)ì„ ìˆ˜í–‰í•œë‹¤."
#. Tag: title
#, no-c-format
msgid "Note"
msgstr ""
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The value of the <literal>order-by attribute is an SQL ordering, "
"not an HQL ordering."
msgstr ""
"<literal>order-by ì†ì„±ì˜ ê°’ì€ HQL 순서지움(ordering)ì´ ì•„ë‹ˆë¼ SQL "
"순서지움(ordering)ìž„ì„ ë…¸íŠ¸í•˜ë¼!"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Associations can even be sorted by arbitrary criteria at runtime using a "
"collection <literal>filter():"
msgstr ""
"ì—°ê´€ë“¤ì€ ì½œë ‰ì…˜ <literal>filter()를 사용하여 실행 ì‹œì— ì–´ë–¤ ìž„ì˜ì˜ "
"criteria(기준)ì„ ì‚¬ìš©í•˜ì—¬ ì •ë ¬(sort)ë ìˆ˜ë„ ìžˆë‹¤."
#. Tag: title
#, no-c-format
msgid "Bidirectional associations"
msgstr "양방향 연관들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A <emphasis>bidirectional association allows navigation from both "
"\"ends\" of the association. Two kinds of bidirectional association are "
"supported:"
msgstr ""
"<emphasis>ì–‘ë°©í–¥ ì—°ê´€ì€ ì—°ê´€ì˜ ì–‘ \"ë(end)들\"로부터 네비게ì´ì…˜"
"ì„ í—ˆìš©í•œë‹¤. ë‘ ê°€ì§€ ì¢…ë¥˜ì˜ ì–‘ë°©í–¥ ì—°ê´€ë“¤ì´ ì§€ì›ëœë‹¤: <placeholder-1/>"
#. Tag: term
#, no-c-format
msgid "one-to-many"
msgstr "one-to-many"
#. Tag: para
#, fuzzy, no-c-format
msgid "set or bag valued at one end and single-valued at the other"
msgstr "한쪽 ëì— set ë˜ëŠ” bag ê°’ì„ ê°–ê³ , 다른 쪽 ê¸‘ì— ë‹¨ì¼ ê°’ì„ ê°€ì§„ ì—°ê´€"
#. Tag: term
#, no-c-format
msgid "many-to-many"
msgstr "many-to-many"
#. Tag: para
#, no-c-format
msgid "set or bag valued at both ends"
msgstr "ì–‘ ëì—ì„œ set ë˜ëŠ” bag ê°’ì„ ê°€ì§„ ì—°ê´€"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"You can specify a bidirectional many-to-many association by mapping two many-"
"to-many associations to the same database table and declaring one end as "
"<emphasis>inverse. You cannot select an indexed collection."
msgstr ""
"ë‹¹ì‹ ì€ ë™ì¼í•œ ë‘ ê°œì˜ many-to-many ì—°ê´€ë“¤ì„ ë™ì¼í•œ ë°ì´í„°ë² ì´ìŠ¤ í…Œì´ë¸”ë¡œ 간단"
"하게 ë§¤í•‘í•˜ê³ í•œ 쪽 ëì„ <emphasis>inverse(ë‹¹ì‹ ì˜ ì„ íƒì€ 하나ì´ì§€"
"만, ê·¸ê²ƒì€ ì¸ë±ì‹±ëœ ì½œë ‰ì…˜ì¼ ìˆ˜ 없다)ë¡œ ì„ ì–¸í•¨ìœ¼ë¡œì¨ í•˜ë‚˜ì˜ ì–‘ë°©í–¥ many-to-"
"many ì—°ê´€ì„ ì§€ì •í• ìˆ˜ë„ ìžˆë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Here is an example of a bidirectional many-to-many association that "
"illustrates how each category can have many items and each item can be in "
"many categories:"
msgstr ""
"다ìŒì€ ì–‘ë°©í–¥ many-to-many ì—°ê´€ì— ê´€í•œ ì˜ˆì œì´ë‹¤; ê°ê°ì˜ ì¹´í…Œê³ ë¦¬ëŠ” ë§Žì€ ì•„ì´"
"í…œë“¤ì„ ê°€ì§ˆ 수 ìžˆê³ ê°ê°ì˜ ì•„ì´í…œì€ ë§Žì€ ì¹´í…Œê³ ë¦¬ë“¤ ì†ì— ìžˆì„ ìˆ˜ 있다:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Changes made only to the inverse end of the association are <emphasis>not."
msgstr ""
"ë‹¹ì‹ ì€ í•˜ë‚˜ì˜ one-to-many ì—°ê´€ì„ í•˜ë‚˜ì˜ many-to-one 연관으로서 ë™ì¼í•œ í…Œì´ë¸” "
"컬럼(들)ë¡œ ë§¤í•‘í•˜ê³ many-ê°’ì„ ê°€ì§„ ë(end)ì„ <literal>inverse=\"true\" "
"does not affect the operation of cascades as these are orthogonal concepts."
msgstr ""
"ì—°ê´€ì˜ í•œìª½ ëì„ <literal>inverse=\"true\"ë¡œ 매핑하는 ê²ƒì€ cascade"
"ë“¤ì„ ê°€ì§„ 오í¼ë ˆì´ì…˜ì— ì˜í–¥ì„ 주지 않으며, ì´ê²ƒë“¤ì€ orthogonal(ì§êµ) ê°œë…들ì´"
"다!"
#. Tag: title
#, no-c-format
msgid "Bidirectional associations with indexed collections"
msgstr "ì¸ë±ì‹±ëœ ì½œë ‰ì…˜ë“¤ì„ ê°€ì§„ ì–‘ë°©í–¥ 연관들"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A bidirectional association where one end is represented as a <literal><"
"list></literal> or <map>, requires special "
"consideration. If there is a property of the child class that maps to the "
"index column you can use <literal>inverse=\"true\" on the "
"collection mapping:"
msgstr ""
"한쪽 ëì´ í•˜ë‚˜ì˜ <literal><list> ë˜ëŠ” <map>를 사용하여 계ì†í• 수 "
"있다:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"If there is no such property on the child class, the association cannot be "
"considered truly bidirectional. That is, there is information available at "
"one end of the association that is not available at the other end. In this "
"case, you cannot map the collection <literal>inverse=\"true\". "
"Instead, you could use the following mapping:"
msgstr ""
"그러나 ë§Œì¼ child í´ëž˜ìŠ¤ ìƒì— 그런 프로í¼í‹°ê°€ 존재하지 ì•Šì„ ê²½ìš°, 우리는 ê·¸ "
"ì—°ê´€ì„ ì§„ì •í•˜ê²Œ 양방향으로 ê°„ì£¼í• ìˆ˜ 없다 (다른 쪽 ëì—ì„œ ì´ìš©ê°€ëŠ¥í•˜ì§€ ì•Šì€ "
"ê·¸ ì—°ê´€ì˜ ëì—ì„œ ì´ìš© 가능한 ì •ë³´ê°€ 존재한다). ì´ ê²½ìš°ì— ìš°ë¦¬ëŠ” ê·¸ ì½œë ‰ì…˜ì„ "
"<literal>inverse=\"true\"ë¡œ 매핑시킬 수 없다. ëŒ€ì‹ ì— ìš°ë¦¬ëŠ” ë‹¤ìŒ ë§¤"
"í•‘ì„ ì‚¬ìš©í• ìˆ˜ 있다:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Note that in this mapping, the collection-valued end of the association is "
"responsible for updates to the foreign key."
msgstr ""
"ì´ ë§¤í•‘ì—ì„œ ê·¸ ì—°ê´€ì˜ ì½œë ‰ì…˜ ê°’ì„ ê°€ì§„ ëì´ foreign í‚¤ì— ëŒ€í•œ ì—…ë°ì´íŠ¸ ì±…ìž„"
"ì´ ìžˆìŒì„ 노트하ë¼."
#. Tag: title
#, no-c-format
msgid "Ternary associations"
msgstr "Ternary associations(세겹 연관들)"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"There are three possible approaches to mapping a ternary association. One "
"approach is to use a <literal>Map with an association as its index:"
msgstr ""
"세 ê²¹ì˜ ì—°ê´€ì„ ë§¤í•‘í•˜ëŠ” 세 가지 가능한 ì ‘ê·¼ë²•ë“¤ì´ ì¡´ìž¬í•œë‹¤. í•˜ë‚˜ì˜ ì ‘ê·¼ë²•ì€ "
"ê·¸ê²ƒì˜ ì¸ë±ìŠ¤ë¡œì„œ 연관관계를 가진 <literal>Mapì„ ì‚¬ìš©í•˜ëŠ” 것ì´ë‹¤:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A second approach is to remodel the association as an entity class. This is "
"the most common approach."
msgstr ""
"ë‘ ë²ˆì§¸ ì ‘ê·¼ë²•ì€ ê·¸ ì—°ê´€ì„ ì—”í‹°í‹° í´ëž˜ìŠ¤ë¡œì„œ 단순하게 리모ë¸ë§ 하는 것ì´ë‹¤. "
"ì´ê²ƒì€ 우리가 가장 공통ì 으로 사용하는 ì ‘ê·¼ë²•ì´ë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"A final alternative is to use composite elements, which will be discussed "
"later."
msgstr ""
"마지막 ëŒ€ì•ˆì€ ìš°ë¦¬ê°€ ë‚˜ì¤‘ì— ë…¼ì˜í•˜ê²Œ ë composite ìš”ì†Œë“¤ì„ ì‚¬ìš©í•˜ëŠ” 것ì´ë‹¤."
#. Tag: title
#, fuzzy, no-c-format
msgid "<literal>Using an <idbag>"
msgstr "<literal><idbag> 사용하기"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The majority of the many-to-many associations and collections of values "
"shown previously all map to tables with composite keys, even though it has "
"been have suggested that entities should have synthetic identifiers "
"(surrogate keys). A pure association table does not seem to benefit much "
"from a surrogate key, although a collection of composite values "
"<emphasis>might. It is for this reason that Hibernate provides a "
"feature that allows you to map many-to-many associations and collections of "
"values to a table with a surrogate key."
msgstr ""
"ë§Œì¼ ë‹¹ì‹ ì´ composite í‚¤ë“¤ì´ ë‚˜ìœ ê²ƒì´ê³ ì—”í‹°í‹°ë“¤ì´ í•©ì„± ì‹ë³„ìžë“¤(대용 키들, "
"surrogate keys)ì„ ê°€ì ¸ì•¼ 한다는 ìš°ë¦¬ì˜ ê²¬í•´ë¥¼ ì „ì 으로 ìˆ˜ìš©í• ê²½ìš°, ë‹¹ì‹ ì€ ìš°"
"리가 지금까지 ë³´ì—¬ì£¼ì—ˆë˜ ê°’ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜ë“¤ê³¼ many to many ì—°ê´€ë“¤ì´ ëª¨ë‘ "
"composite í‚¤ë“¤ì„ ê°€ì§„ í…Œì´ë¸”들로 매핑ëœë‹¤ëŠ” 약간 ì´ìƒí•œ ì ì„ ë°œê²¬í• ìˆ˜ë„ ìžˆ"
"다! ì´ì œ ì´ ì ì€ ê½¤ ë…¼ì˜ì˜ 여지가 있다; 순수한 ì—°ê´€ í…Œì´ë¸”ì€ (ë¹„ë¡ composite "
"ê°’ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜<emphasis>ì¼ ìˆ˜ë„ ìžˆì„지ë¼ë„) 대용 키로부터 많"
"ì€ ì´ì ì„ ì·¨í•˜ì§€ 않는 것처럼 ë³´ì¸ë‹¤. 그럼ì—ë„ ë¶ˆêµ¬í•˜ê³ Hibernate는 ë‹¹ì‹ ì´ ê°’"
"ë“¤ì„ ê°€ì§„ ì½œë ‰ì…˜ë“¤ê³¼ many to many ì—°ê´€ë“¤ì„ ëŒ€ìš© 키를 가진 í…Œì´ë¸”ë¡œ 매핑시키"
"는 ê²ƒì„ ë‹¹ì‹ ì—게 허용해주는 íŠ¹ì§•ì„ ì œê³µí•œë‹¤."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The <literal><idbag> element lets you map a ListCollection) with bag semantics. For example:"
msgstr ""
"<literal><idbag> 요소는 bag ì˜ë¯¸ë¥¼ 가진 ListCollection)ì„ ë§¤í•‘í•˜ë„ë¡ ë‹¹ì‹ ì—게 허용해준"
"다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"An <literal><idbag> has a synthetic id generator, just like "
"an entity class. A different surrogate key is assigned to each collection "
"row. Hibernate does not, however, provide any mechanism for discovering the "
"surrogate key value of a particular row."
msgstr ""
"ë‹¹ì‹ ì´ ë³¼ 수 있듯ì´, <literal><idbag>ì€ ë§ˆì¹˜ 엔티티 í´ëž˜ìŠ¤ì¸"
"ì–‘ synthetic id generator(합성 id ìƒì„±ê¸°)를 갖는다! 다른 대용 키는 ê°ê°ì˜ 콜"
"ë ‰ì…˜ í–‰ì— í• ë‹¹ëœë‹¤. 하지만 Hibernate는 íŠ¹ì • í–‰ì˜ ëŒ€ìš© 키 ê°’ì„ ë°œê²¬í•˜ëŠ” 메커니"
"ì¦˜ì„ ì œê³µí•˜ì§€ 않는다."
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"The update performance of an <literal><idbag> supersedes a "
"regular <literal><bag>. Hibernate can locate individual rows "
"efficiently and update or delete them individually, similar to a list, map "
"or set."
msgstr ""
"<literal><idbag>ì˜ ì—…ë°ì´íŠ¸ í¼í¬ë¨¼ìŠ¤ëŠ” ì •ê·œ <"
"bag></literal> 보다 훨씬 좋다는 ì ì„ ë…¸íŠ¸í•˜ë¼! Hibernate는 마치 list, "
"map, ë˜ëŠ” setì¸ì–‘, 개별 í–‰ë“¤ì„ íš¨ìœ¨ì 으로 위치지울 수 ìžˆê³ ê·¸ê²ƒë“¤ì„ ê°œë³„ì 으"
"ë¡œ ì—…ë°ì´íŠ¸ 하거나 ì‚ì œì‹œí‚¬ 수 있다."
#. Tag: para
#, no-c-format
msgid ""
"In the current implementation, the <literal>native identifier "
"generation strategy is not supported for <literal><idbag> "
"collection identifiers."
msgstr ""
"현재 구현ì—ì„œ, <literal>native ì‹ë³„ìž ìƒì„± ë°©ë„는 <"
"idbag></literal> ì½œë ‰ì…˜ ì‹ë³„ìžë“¤ì— 대해 지ì›ë˜ì§€ 않는다."
#. Tag: title
#, no-c-format
msgid "Collection examples"
msgstr "ì½œë ‰ì…˜ ì˜ˆì œë“¤"
#. Tag: para
#, fuzzy, no-c-format
msgid "This section covers collection examples."
msgstr "ì½œë ‰ì…˜ ì˜ˆì œë“¤"
#. Tag: para
#, no-c-format
msgid ""
"The following class has a collection of <literal>Child instances:"
msgstr ""
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"If each child has, at most, one parent, the most natural mapping is a one-to-"
"many association:"
msgstr ""
"는 <literal>Child ì¸ìŠ¤í„´ìŠ¤ë“¤ì„ 가진 í•˜ë‚˜ì˜ ì½œë ‰ì…˜ì„ ê°–ê³ ìžˆë‹¤. 만"
"ì¼ ê°ê°ì˜ ìžì‹ì´ 최소한 í•œ ê°œì˜ ë¶€ëª¨ë¥¼ 가질 경우, ëŒ€ë¶€ë¶„ì˜ ê³ ìœ í•œ ë§¤í•‘ì€ one-"
"to-many ì—°ê´€ì´ë‹¤:"
#. Tag: para
#, no-c-format
msgid "This maps to the following table definitions:"
msgstr "ì´ê²ƒì€ ë‹¤ìŒ í…Œì´ë¸” ì •ì˜ë“¤ë¡œ 매핑ëœë‹¤:"
#. Tag: para
#, no-c-format
msgid ""
"If the parent is <emphasis>required, use a bidirectional one-to-"
"many association:"
msgstr ""
"ë§Œì¼ ë¶€ëª¨ê°€ <emphasis>필수ì ì´ë¼ë©´, ì–‘ë°©í–¥ one-to-many 연관관계를 "
"사용하ë¼:"
#. Tag: para
#, no-c-format
msgid "Notice the <literal>NOT NULL constraint:"
msgstr "<literal>NOT NULL ì»¨ìŠ¤íŠ¸ë ˆì¸íŠ¸ë¥¼ 주목하ë¼:"
#. Tag: para
#, fuzzy, no-c-format
msgid ""
"Alternatively, if this association must be unidirectional you can declare "
"the <literal>NOT NULL constraint on the <key> 매핑 ìƒì— NOT NULL
Other Hibernate examples (source code examples)
Here is a short list of links related to this Hibernate collection_mapping.po source code file:
|