I have a question regarding concurrency in a stateless session bean:
EJB, by default, prohibits concurrent access to bean instances.
I am assuming then that an instance of an object created by a session bean is also concurrent (provided the only access to it is via method calls on the EJB).
The reason I ask is that I have an application object that I want to store in an instance of an EJB. I don�t want multiple hits on this instance while one
thread is running (it�s making a connection to a mainframe). So if I define the object as an instance variable of the stateless session bean, does concurrency still hold?
thank you
Max