[jboss-user] [Clustering/JBoss] - Re: ConcurrentModificationException during session serializa

bstansberry@jboss.com do-not-reply at jboss.com
Mon Jun 2 18:39:12 EDT 2008


Sounds like your analysis on the RichFaces forum was on the right track.

The session management layer does not prevent concurrent access to the session. The session's internal data structures can deal with concurrency (e.g. the attribute map is a ConcurrentHashMap) but if the objects you'll store in it are going to be accessed concurrently, they'll need to be thread safe or have access to them synchronized.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155174#4155174

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155174



More information about the jboss-user mailing list