|
Hibernate example source code file (example_parentchild.po)
This example Hibernate source code file (example_parentchild.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 example_parentchild.po source code
# translation of Collection_Mapping.po to
# Xi Huang <xhuang@redhat.com>, 2006.
# Xi HUANG <xhuang@redhat.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: Collection_Mapping\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-02-10T07:25:35\n"
"PO-Revision-Date: 2010-03-16 10:04+1000\n"
"Last-Translator: Xi HUANG <xhuang@redhat.com>\n"
"Language-Team: <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
#. Tag: title
#, no-c-format
msgid "Example: Parent/Child"
msgstr "示例:父å关系(Parent/Child)"
#. Tag: para
#, no-c-format
msgid "One of the first things that new users want to do with Hibernate is to model a parent/child type relationship. There are two different approaches to this. The most convenient approach, especially for new users, is to model both <literal>Parent and Child as entity classes with a <one-to-many> association from Parent to Child. The alternative approach is to declare the Child as a <composite-element>. The default semantics of a one-to-many association in Hibernate are much less close to the usual semantics of a parent/child relationship than those of a composite element mapping. We will explain how to use a bidirectional one-to-many association with cascades to model a parent/child relationship efficiently and elegantly."
msgstr "刚刚接触 Hibernate 的人大多是从父å关系(parent / child type relationship)的建模入手的。父å关系的建模有两ç§æ–¹æ³•ã€‚由于ç§ç§åŽŸå› ,最方便的方法是把 <literal>Parent å’Œ Child 都建模æˆå®žä½“类,并创建一个从 Parent æŒ‡å‘ Child çš„ <one-to-many> å…³è”,对新手æ¥è¯´å°¤å…¶å¦‚æ¤ã€‚还有一ç§æ–¹æ³•ï¼Œå°±æ˜¯å°† Child 声明为一个 <composite-element>(组åˆå…ƒç´ )。 事实上在 Hibernate ä¸ one to many å…³è”的默认è¯ä¹‰è¿œæ²¡æœ‰ composite element è´´è¿‘ parent / child 关系的通常è¯ä¹‰ã€‚下é¢æˆ‘们会é˜è¿°å¦‚何使用带有级è”çš„åŒå‘一对多关è”(idirectional one to many association with cascades)去建立有效ã€ä¼˜ç¾Žçš„ parent / child 关系。"
#. Tag: title
#, no-c-format
msgid "A note about collections"
msgstr "关于 collections 需è¦æ³¨æ„的一点"
#. Tag: para
#, no-c-format
msgid "Hibernate collections are considered to be a logical part of their owning entity and not of the contained entities. Be aware that this is a critical distinction that has the following consequences:"
msgstr "Hibernate collections 被当作其所属实体而ä¸æ˜¯å…¶åŒ…å«å®žä½“的一个逻辑部分。这éžå¸¸é‡è¦ï¼Œå®ƒä¸»è¦ä½“çŽ°ä¸ºä»¥ä¸‹å‡ ç‚¹ï¼š"
#. Tag: para
#, no-c-format
msgid "When you remove/add an object from/to a collection, the version number of the collection owner is incremented."
msgstr "å½“åˆ é™¤æˆ–å¢žåŠ collection ä¸å¯¹è±¡çš„时候,collection 所属者的版本值会递增。 "
#. Tag: para
#, no-c-format
msgid "If an object that was removed from a collection is an instance of a value type (e.g. a composite element), that object will cease to be persistent and its state will be completely removed from the database. Likewise, adding a value type instance to the collection will cause its state to be immediately persistent."
msgstr "如果一个从 collection ä¸ç§»é™¤çš„对象是一个值类型(value type)的实例,比如 composite element,那么这个对象的æŒä¹…化状æ€å°†ä¼šç»ˆæ¢ï¼Œå…¶åœ¨æ•°æ®åº“ä¸å¯¹åº”çš„è®°å½•ä¼šè¢«åˆ é™¤ã€‚åŒæ ·çš„ï¼Œå‘ collection å¢žåŠ ä¸€ä¸ª value type 的实例将会使之立å³è¢«æŒä¹…化。 "
#. Tag: para
#, no-c-format
msgid "Conversely, if an entity is removed from a collection (a one-to-many or many-to-many association), it will not be deleted by default. This behavior is completely consistent; a change to the internal state of another entity should not cause the associated entity to vanish. Likewise, adding an entity to a collection does not cause that entity to become persistent, by default."
msgstr "å¦ä¸€æ–¹é¢ï¼Œå¦‚果从一对多或多对多关è”çš„ collection ä¸ç§»é™¤ä¸€ä¸ªå®žä½“,在缺çœæƒ…况下这个对象并ä¸ä¼šè¢«åˆ 除。这个行为是完全åˆä¹Žé€»è¾‘çš„ï¼ï¼æ”¹å˜ä¸€ä¸ªå®žä½“的内部状æ€ä¸åº”该使与它关è”的实体消失掉。åŒæ ·çš„ï¼Œå‘ collection å¢žåŠ ä¸€ä¸ªå®žä½“ä¸ä¼šä½¿ä¹‹è¢«æŒä¹…化。 "
#. Tag: para
#, no-c-format
msgid "Adding an entity to a collection, by default, merely creates a link between the two entities. Removing the entity will remove the link. This is appropriate for all sorts of cases. However, it is not appropriate in the case of a parent/child relationship. In this case, the life of the child is bound to the life cycle of the parent."
msgstr "å®žé™…ä¸Šï¼Œå‘ Collection å¢žåŠ ä¸€ä¸ªå®žä½“çš„ç¼ºçœåŠ¨ä½œåªæ˜¯åœ¨ä¸¤ä¸ªå®žä½“之间创建一个连接而已,åŒæ ·ç§»é™¤çš„时候也åªæ˜¯åˆ 除连接。这ç§å¤„ç†å¯¹äºŽæ‰€æœ‰çš„情况都是åˆé€‚的。对于父å关系则是完全ä¸é€‚åˆçš„,在这ç§å…³ç³»ä¸‹ï¼Œå对象的生å˜ç»‘定于父对象的生å˜å‘¨æœŸã€‚ "
#. Tag: title
#, no-c-format
msgid "Bidirectional one-to-many"
msgstr "åŒå‘的一对多关系(Bidirectional one-to-many)"
#. Tag: para
#, no-c-format
msgid "Suppose we start with a simple <literal><one-to-many> association from Parent to Child."
msgstr "å‡è®¾æˆ‘们è¦å®žçŽ°ä¸€ä¸ªç®€å•çš„从 Parent 到 Child çš„ <one-to-many> å…³è”。"
#. Tag: para
#, no-c-format
msgid "If we were to execute the following code:"
msgstr "如果我们è¿è¡Œä¸‹é¢çš„代ç :"
#. Tag: para
#, no-c-format
msgid "Hibernate would issue two SQL statements:"
msgstr "Hibernate ä¼šäº§ç”Ÿä¸¤æ¡ SQL è¯å¥ï¼š"
#. Tag: para
#, no-c-format
msgid "an <literal>INSERT to create the record for c"
msgstr "ä¸€æ¡ <literal>INSERT è¯å¥ï¼Œä¸º c 创建一æ¡è®°å½•"
#. Tag: para
#, no-c-format
msgid "an <literal>UPDATE to create the link from p to c"
msgstr "ä¸€æ¡ <literal>UPDATE è¯å¥ï¼Œåˆ›å»ºä»Ž p 到 c 的连接"
#. Tag: para
#, no-c-format
msgid "This is not only inefficient, but also violates any <literal>NOT NULL constraint on the parent_id column. You can fix the nullability constraint violation by specifying not-null=\"true\" in the collection mapping:"
msgstr "è¿™æ ·åšä¸ä»…效率低,而且è¿å了 <literal>parent_id 列 parent_id éžç©ºçš„é™åˆ¶ã€‚我们å¯ä»¥é€šè¿‡åœ¨é›†åˆç±»æ˜ 射上指定 not-null=\"true\" æ¥è§£å†³è¿åéžç©ºçº¦æŸçš„问题:"
#. Tag: para
#, no-c-format
msgid "However, this is not the recommended solution."
msgstr "然而,这并éžæ˜¯æŽ¨è的解决方法。"
#. Tag: para
#, no-c-format
msgid "The underlying cause of this behavior is that the link (the foreign key <literal>parent_id) from p to c is not considered part of the state of the Child object and is therefore not created in the INSERT. The solution is to make the link part of the Child mapping."
msgstr "è¿™ç§çŽ°è±¡çš„æ ¹æœ¬åŽŸå› æ˜¯ä»Ž <literal>p 到 c 的连接(外键 parent_id)没有被当作 Child 对象状æ€çš„ä¸€éƒ¨åˆ†ï¼Œå› è€Œæ²¡æœ‰åœ¨ INSERT è¯å¥ä¸è¢«åˆ›å»ºã€‚å› æ¤è§£å†³çš„åŠžæ³•å°±æ˜¯æŠŠè¿™ä¸ªè¿žæŽ¥æ·»åŠ åˆ° Child çš„æ˜ å°„ä¸ã€‚"
#. Tag: para
#, no-c-format
msgid "You also need to add the <literal>parent property to the Child class."
msgstr "ä½ è¿˜éœ€è¦ä¸ºç±» <literal>Child æ·»åŠ parent 属性。"
#. Tag: para
#, no-c-format
msgid "Now that the <literal>Child entity is managing the state of the link, we tell the collection not to update the link. We use the inverse attribute to do this:"
msgstr "现在实体 <literal>Child 在管ç†è¿žæŽ¥çš„状æ€ï¼Œä¸ºäº†ä½¿ collection ä¸æ›´æ–°è¿žæŽ¥ï¼Œæˆ‘们使用 inverse 属性:"
#. Tag: para
#, no-c-format
msgid "The following code would be used to add a new <literal>Child:"
msgstr "下é¢çš„代ç 是用æ¥æ·»åŠ 一个新的 <literal>Child:"
#. Tag: para
#, no-c-format
msgid "Only one SQL <literal>INSERT would now be issued."
msgstr "现在,åªä¼šæœ‰ä¸€æ¡ <literal>INSERT è¯å¥è¢«æ‰§è¡Œã€‚"
#. Tag: para
#, no-c-format
msgid "You could also create an <literal>addChild() method of Parent."
msgstr "为了让事情å˜å¾—井井有æ¡ï¼Œå¯ä»¥ä¸º <literal>Parent åŠ ä¸€ä¸ª addChild() 方法。"
#. Tag: para
#, no-c-format
msgid "The code to add a <literal>Child looks like this:"
msgstr "çŽ°åœ¨ï¼Œæ·»åŠ <literal>Child 的代ç å°±æ˜¯è¿™æ ·ï¼š"
#. Tag: title
#, no-c-format
msgid "Cascading life cycle"
msgstr "级è”生命周期(Cascading lifecycle) "
#. Tag: para
#, no-c-format
msgid "You can address the frustrations of the explicit call to <literal>save() by using cascades."
msgstr "需è¦æ˜¾å¼è°ƒç”¨ <literal>save() ä»ç„¶å¾ˆéº»çƒ¦ï¼Œæˆ‘们å¯ä»¥ç”¨çº§è”æ¥è§£å†³è¿™ä¸ªé—®é¢˜ã€‚ "
#. Tag: para
#, no-c-format
msgid "This simplifies the code above to:"
msgstr "è¿™æ ·ä¸Šé¢çš„代ç å¯ä»¥ç®€åŒ–为: "
#. Tag: para
#, no-c-format
msgid "Similarly, we do not need to iterate over the children when saving or deleting a <literal>Parent. The following removes p and all its children from the database."
msgstr "åŒæ ·çš„,ä¿å˜æˆ–åˆ é™¤ <literal>Parent 对象的时候并ä¸éœ€è¦é历其å对象。下é¢çš„代ç ä¼šåˆ é™¤å¯¹è±¡ p åŠå…¶æ‰€æœ‰å对象对应的数æ®åº“记录。 "
#. Tag: para
#, no-c-format
msgid "However, the following code:"
msgstr "然而,这段代ç :"
#. Tag: para
#, no-c-format
msgid "will not remove <literal>c from the database. In this case, it will only remove the link to p and cause a NOT NULL constraint violation. You need to explicitly delete() the Child."
msgstr "ä¸ä¼šä»Žæ•°æ®åº“åˆ é™¤<literal>c;它åªä¼šåˆ 除与 p 之间的连接(并且会导致è¿å NOT NULL 约æŸï¼Œåœ¨è¿™ä¸ªä¾‹åä¸ï¼‰ã€‚ä½ éœ€è¦æ˜¾å¼è°ƒç”¨ delete() æ¥åˆ 除 Child。 "
#. Tag: para
#, no-c-format
msgid "In our case, a <literal>Child cannot exist without its parent. So if we remove a Child from the collection, we do want it to be deleted. To do this, we must use cascade=\"all-delete-orphan\"."
msgstr "在我们的例åä¸ï¼Œå¦‚果没有父对象,å对象就ä¸åº”该å˜åœ¨ï¼Œå¦‚果将å对象从 collection ä¸ç§»é™¤ï¼Œå®žé™…ä¸Šæˆ‘ä»¬æ˜¯æƒ³åˆ é™¤å®ƒã€‚è¦å®žçŽ°è¿™ç§è¦æ±‚,就必须使用 <literal>cascade=\"all-delete-orphan\"。 "
#. Tag: para
#, no-c-format
msgid "Even though the collection mapping specifies <literal>inverse=\"true\", cascades are still processed by iterating the collection elements. If you need an object be saved, deleted or updated by cascade, you must add it to the collection. It is not enough to simply call setParent()."
msgstr "注æ„:å³ä½¿åœ¨ collection ä¸€æ–¹çš„æ˜ å°„ä¸æŒ‡å®š <literal>inverse=\"true\",级è”ä»ç„¶æ˜¯é€šè¿‡é历 collection ä¸çš„å…ƒç´ æ¥å¤„ç†çš„ã€‚å¦‚æžœä½ æƒ³è¦é€šè¿‡çº§è”进行å对象的æ’å…¥ã€åˆ 除ã€æ›´æ–°æ“ä½œï¼Œå°±å¿…é¡»æŠŠå®ƒåŠ åˆ° collection ä¸ï¼Œåªè°ƒç”¨ setParent() 是ä¸å¤Ÿçš„。 "
#. Tag: title
#, no-c-format
msgid "Cascades and <literal>unsaved-value"
msgstr "级è”与未ä¿å˜å€¼ï¼ˆ<literal>unsaved-value)"
#. Tag: para
#, no-c-format
msgid "Suppose we loaded up a <literal>Parent in one Session, made some changes in a UI action and wanted to persist these changes in a new session by calling update(). The Parent will contain a collection of children and, since the cascading update is enabled, Hibernate needs to know which children are newly instantiated and which represent existing rows in the database. We will also assume that both Parent and Child have generated identifier properties of type Long. Hibernate will use the identifier and version/timestamp property value to determine which of the children are new. (See .) In Hibernate3, it is no longer necessary to specify an unsaved-value explicitly."
msgstr "å‡è®¾æˆ‘们从 <literal>Session ä¸è£…入了一个 Parent 对象,用户界é¢å¯¹å…¶è¿›è¡Œäº†ä¿®æ”¹ï¼Œç„¶åŽå¸Œæœ›åœ¨ä¸€ä¸ªæ–°çš„ Session 里é¢è°ƒç”¨ update() æ¥ä¿å˜è¿™äº›ä¿®æ”¹ã€‚对象 Parent 包å«äº†å对象的集åˆï¼Œç”±äºŽæ‰“开了级è”更新,Hibernate 需è¦çŸ¥é“哪些 Child 对象是新实例化的,哪些代表数æ®åº“ä¸å·²ç»å˜åœ¨çš„记录。我们å‡è®¾ Parent å’Œ Child å¯¹è±¡çš„æ ‡è¯†å±žæ€§éƒ½æ˜¯è‡ªåŠ¨ç”Ÿæˆçš„,类型为 Long。Hibernate ä¼šä½¿ç”¨æ ‡è¯†å±žæ€§çš„å€¼ï¼Œå’Œ version 或 timestamp 属性,æ¥åˆ¤æ–哪些å对象是新的。(å‚è§ ï¼‰åœ¨ Hibernate3 ä¸,显å¼æŒ‡å®š unsaved-value ä¸å†æ˜¯å¿…须的了。 "
#. Tag: para
#, no-c-format
msgid "The following code will update <literal>parent and child and insert newChild:"
msgstr "下é¢çš„代ç 会更新 <literal>parent å’Œ child 对象,并且æ’å…¥ newChild 对象。 "
#. Tag: para
#, no-c-format
msgid "This may be suitable for the case of a generated identifier, but what about assigned identifiers and composite identifiers? This is more difficult, since Hibernate cannot use the identifier property to distinguish between a newly instantiated object, with an identifier assigned by the user, and an object loaded in a previous session. In this case, Hibernate will either use the timestamp or version property, or will actually query the second-level cache or, worst case, the database, to see if the row exists."
msgstr "这对于自动生æˆæ ‡è¯†çš„情况是éžå¸¸å¥½çš„,但是自分é…çš„æ ‡è¯†å’Œå¤åˆæ ‡è¯†æ€Žä¹ˆåŠžå‘¢ï¼Ÿè¿™æ˜¯æœ‰ç‚¹éº»çƒ¦ï¼Œå› 为 Hibernate æ²¡æœ‰åŠžæ³•åŒºåˆ†æ–°å®žä¾‹åŒ–çš„å¯¹è±¡ï¼ˆæ ‡è¯†è¢«ç”¨æˆ·æŒ‡å®šäº†ï¼‰å’Œå‰ä¸€ä¸ª Session 装入的对象。在这ç§æƒ…况下,Hibernate 会使用 timestamp 或 version 属性,或者查询第二级缓å˜ï¼Œæˆ–者最å的情况,查询数æ®åº“,æ¥ç¡®è®¤æ˜¯å¦æ¤è¡Œå˜åœ¨ã€‚ "
#. Tag: title
#, no-c-format
msgid "Conclusion"
msgstr "结论"
#. Tag: para
#, no-c-format
msgid "The sections we have just covered can be a bit confusing. However, in practice, it all works out nicely. Most Hibernate applications use the parent/child pattern in many places."
msgstr "这里有ä¸å°‘东西需è¦èžä¼šè´¯é€šï¼Œå¯èƒ½ä¼šè®©æ–°æ‰‹æ„Ÿåˆ°è¿·æƒ‘。但是在实践ä¸å®ƒä»¬éƒ½å·¥ä½œåœ°éžå¸¸å¥½ã€‚大部分 Hibernate 应用程åºéƒ½ä¼šç»å¸¸ç”¨åˆ°çˆ¶å对象模å¼ã€‚ "
#. Tag: para
#, no-c-format
msgid "We mentioned an alternative in the first paragraph. None of the above issues exist in the case of <literal><composite-element> mappings, which have exactly the semantics of a parent/child relationship. Unfortunately, there are two big limitations with composite element classes: composite elements cannot own collections and they should not be the child of any entity other than the unique parent."
msgstr "在第一段ä¸æˆ‘们曾ç»æ到å¦ä¸€ä¸ªæ–¹æ¡ˆã€‚上é¢çš„这些问题都ä¸ä¼šå‡ºçŽ°åœ¨ <literal><composite-element> æ˜ å°„ä¸ï¼Œå®ƒå‡†ç¡®åœ°è¡¨è¾¾äº†çˆ¶å关系的è¯ä¹‰ã€‚很ä¸å¹¸å¤åˆå…ƒç´ 还有两个é‡å¤§é™åˆ¶ï¼šå¤åˆå…ƒç´ ä¸èƒ½æ‹¥æœ‰ collections,并且,除了用于惟一的父对象外,它们ä¸èƒ½å†ä½œä¸ºå…¶å®ƒä»»ä½•å®žä½“çš„å对象。 "
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA[Parent p = .....;\n"
#~ "Child c = new Child();\n"
#~ "p.getChildren().add(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = .....;\n"
#~ "Child c = new Child();\n"
#~ "p.getChildren().add(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "c.setParent(p);\n"
#~ "p.getChildren().add(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "c.setParent(p);\n"
#~ "p.getChildren().add(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA[public void addChild(Child c) {\n"
#~ " c.setParent(this);\n"
#~ " children.add(c);\n"
#~ "}]]>"
#~ msgstr ""
#~ "<![CDATA[public void addChild(Child c) {\n"
#~ " c.setParent(this);\n"
#~ " children.add(c);\n"
#~ "}]]>"
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "p.addChild(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "p.addChild(c);\n"
#~ "session.save(c);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "p.addChild(c);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = new Child();\n"
#~ "p.addChild(c);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "session.delete(p);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "session.delete(p);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = (Child) p.getChildren().iterator().next();\n"
#~ "p.getChildren().remove(c);\n"
#~ "c.setParent(null);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = (Child) p.getChildren().iterator().next();\n"
#~ "p.getChildren().remove(c);\n"
#~ "c.setParent(null);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = (Child) p.getChildren().iterator().next();\n"
#~ "p.getChildren().remove(c);\n"
#~ "session.delete(c);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[Parent p = (Parent) session.load(Parent.class, pid);\n"
#~ "Child c = (Child) p.getChildren().iterator().next();\n"
#~ "p.getChildren().remove(c);\n"
#~ "session.delete(c);\n"
#~ "session.flush();]]>"
#~ msgid ""
#~ "<![CDATA["
#~ msgstr ""
#~ "<![CDATA["
#~ msgid ""
#~ "<![CDATA[//parent and child were both loaded in a previous session\n"
#~ "parent.addChild(child);\n"
#~ "Child newChild = new Child();\n"
#~ "parent.addChild(newChild);\n"
#~ "session.update(parent);\n"
#~ "session.flush();]]>"
#~ msgstr ""
#~ "<![CDATA[//parent and child were both loaded in a previous session\n"
#~ "parent.addChild(child);\n"
#~ "Child newChild = new Child();\n"
#~ "parent.addChild(newChild);\n"
#~ "session.update(parent);\n"
#~ "session.flush();]]>"
Other Hibernate examples (source code examples)
Here is a short list of links related to this Hibernate example_parentchild.po source code file:
|