If my understanding is correct, the container does not make concurrent calls to an SLSB. Calls are serialized or a new SLSB instance is created. My questions are:
Is it safe to access the SLSB from a singletion which has ConcurrencyManagement.BEAN, where concurrent calls can happen?
And if it is safe, is it also safe to use an entitymanager instance inside the SLSB, because entitymanager is not thread safe and if the SLSB instance is shared between different threads, the entitymanager is also shared between the threads.
Thanks in advance!