Uploaded image for project: 'OpenJPA'
  1. OpenJPA
  2. OPENJPA-1966

Entity graphs containing bi-directional references may not merge correctly if an entity does not contain a state manager

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.0.4, 1.2.2, 2.0.1, 2.1.0
    • None
    • kernel
    • None

    Description

      An entity graph (with cascade) containing bi-directional relationships or circular references may fail to merge properly if one or more of the entities in the graph do not have a state manager - either an active or detached state manager. The result is that one or more of the merged entities may end up with a reference to a detached object. This may not be immediately evident and could cause problems in subsequent operations. It can even affect the ordering of SQL statements since foreign keys may not be properly associated with the detached entities.

      For example: A <- OneToOne -> B
      em.clear()
      Detached graph: B <--> A
      A: Is detached, has DetachedStateManager
      B: Is detached, No state manager, only detached state field. (ie. @DetachedState Object state)
      Merge: B
      After merge: B' --> A' --> B (detached)

      If B contains a state manager the result of the merge is correct: B' <--> A'

      The source of the problem is that the "no state manager" attachment path creates a new PC + state manager and assigns this state manager to the detached instance so that it can be used to attach all its fields. During a cascade, this detached entity (with borrowed state manager) looks persistent, so it can get attached into the resulting merge graph.

      Attachments

        1. OPENJPA-1966.patch
          12 kB
          Jeremy Bauer
        2. OPENJPA-1966.patch
          30 kB
          Jeremy Bauer

        Activity

          People

            techhusky Jeremy Bauer
            techhusky Jeremy Bauer
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: