EJB stateless beans are thread safe in the sense that they can be accessed by many clients at the same time without concerns, in fact each client will be served by a different instance.
On the client side we use proxy references to a particular stateless EJB. Are EJB proxy/remote stubs also thread safe to call?
I mean, if my Spring controller is Autowired
with an EJB, its methods will be called possibly by many threads at a time.
Is it all thread safe?