ConcurrentModificationException
Status: Alpha
Brought to you by:
aananiev
in the AspectSystemImpl class we have
private List aspectList = Collections.synchronizedList
(new LinkedList());
and this aspectList is getting iterated in the
findInterceptors method
but according to the java api specifications
http://java.sun.com/j2se/1.4.2/docs/api/java/util/Coll
ections.html#synchronizedList(java.util.List)
the iteration should be in a synchronized block which
is not the case now. Else it might result in
concurrentmodificationexception comming if more than
one EJB request goes from the same jsp page
Thej