I am using below code in my spring webflow application running on weblogic server.
RequestContextHolder.getRequestContext()
.getExternalContext().getNativeRequest()).getSession()
I know that RequestContextHolder
uses ThreadLocal
to store the requestContext
during start and resume steps.
Now coming to the question is there any remote possibility that one thread may access requestContext
of other thread (may be because thread is being reused by weblogic or beacuse of some other reason) ?