Uploaded image for project: 'Beehive'
  1. Beehive
  2. BEEHIVE-779

ScopedRequestImpl.restoreAttributes() should not point the ScopedAttributeContainer at the Session's stored attribute HashMap instance

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • v1m1
    • 1.0
    • None
    • None

    Description

      Currently the ScopedRequestImpl.restoreAttributes() assigns the
      ScopedAttributeContainer with the Session's stored attribute HashMap instance.
      If there are multiple requests to the server in very fast succession,
      this will cause the use of the HashMap iterator to throw a
      ConcurrentModificationException.

      The problem is that during both restoreAttributes() and persistAttributes()
      we are updating the session's instance of a HashMap. At the same time,
      in persisAttributes() the call to the ScopedAttributeContainer's
      getSerializableAttrs() uses the HashMap instance iterator
      (HashMap.HashIterator). If between calls to next() for the next
      MapEntry, and the number of elements in the Map gets altered,
      we get the ConcurrentModificationException...

      java.util.ConcurrentModificationException
      at java.util.HashMap$HashIterator.nextEntry()Ljava.util.HashMap$Entry;(Unknown Source)
      at java.util.HashMap$EntryIterator.next()Ljava.util.Map$Entry;(Unknown Source)
      at java.util.HashMap$EntryIterator.next()Ljava.lang.Object;(Unknown Source)
      at org.apache.beehive.netui.pageflow.scoping.internal.AttributeContainer.getSerializableAttrs(AttributeContainer.java:91)
      at org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestImpl.persistAttributes(ScopedRequestImpl.java:444)

      I will take this one and submit a patch for the committers.

      Attachments

        1. j779patch.txt
          1 kB
          Howard Carlin Rogers

        Activity

          People

            crogers Howard Carlin Rogers
            crogers Howard Carlin Rogers
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: