Return-Path: Delivered-To: apmail-openjpa-dev-archive@www.apache.org Received: (qmail 80292 invoked from network); 22 Oct 2007 17:53:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Oct 2007 17:53:12 -0000 Received: (qmail 13198 invoked by uid 500); 22 Oct 2007 17:53:00 -0000 Delivered-To: apmail-openjpa-dev-archive@openjpa.apache.org Received: (qmail 13053 invoked by uid 500); 22 Oct 2007 17:53:00 -0000 Mailing-List: contact dev-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list dev@openjpa.apache.org Received: (qmail 13037 invoked by uid 99); 22 Oct 2007 17:52:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2007 10:52:59 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2007 17:53:11 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 871F5714187 for ; Mon, 22 Oct 2007 10:52:51 -0700 (PDT) Message-ID: <2759164.1193075571529.JavaMail.jira@brutus> Date: Mon, 22 Oct 2007 10:52:51 -0700 (PDT) From: "Adish Abnave (JIRA)" To: dev@openjpa.apache.org Subject: [jira] Commented: (OPENJPA-255) Inconsistent behavior during merge with cascade=none In-Reply-To: <17333241.1181342366190.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OPENJPA-255?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12536760 ] Adish Abnave commented on OPENJPA-255: -------------------------------------- How do i use the patched attached here? I am trying to build OpenJPA with the patched code but getting maven Build error.Can some one send me or let me know where i can get an openJpa jar with the patched code ? > Inconsistent behavior during merge with cascade=none > ---------------------------------------------------- > > Key: OPENJPA-255 > URL: https://issues.apache.org/jira/browse/OPENJPA-255 > Project: OpenJPA > Issue Type: Bug > Components: kernel > Affects Versions: 0.9.7, 1.0.0 > Reporter: Gokhan Ergul > Priority: Minor > Attachments: openjpa-jira-255.patch > > > Suppose you have 2 entities, A and B, with a unidirectional one-to-one relation from A to B and cascade=none. Persist A, B1 and B2, where A.b == B1. Later change A.b to B2 and merge, the operation may or may not succeed, depending on the following conditions: > - If both A and B2 is detached, merge succeeds. > - If both A and B2 is attached, iow managed in the same entity manager, merge succeeds. > - If A is detached and B2 is managed as above, merge fails with 'encountered new object ...' exception. > (It doesn't matter if the objects are versioned or not.) > The latter case is a rather typical usecase involving a detached context, where the server application unmarshalls a user-modified domain object, creates an entity manager and further modifies that object before invoking merge (such as setting A.b depending on values of other fields). There are two workarounds for the issue: merge twice (merge/set server managed fields/merge), or explicitly detach all such relation objects before calling merge, but obviously neither is desirable. > Looking at the code, it all boils down to AttachStrategy.getReference(...) method. This method is invoked whenever a relation with cascade=none is encountered during merge operation (and only for that case). Yet this method assumes that the object *must* be detached or it will throw the mentioned exception --I don't see the logic behind that assumption. > Attached a testcase demonstrating that behaviour, and a possible fix for it --based on the premise that the above assumption is not correct. If that's not the case, I'd appreciate if someone can point me in the right direction as to why cascade=none on any type of relation field requires a detached object. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.