Hello
just a question which probably is more jboss related. Hope it is not out of place here.
How is concurrency assured? Two users call the same module, for instance FaqModule. Inside the faqmodule are private non-static members of which the depthMax is changeable via the jmx-console.
How does the MBean server handle two concurrent requests? Will it make a copy of the original MBean configuration/use an instance from pooling and then use that to serve the new request?
Or are they sharing the same instance, just running the methods in own environment but sharing the same member variables?
Regards, Jan.