Reputation: 175
Why entity manager is not thread safe in container manage? Does oracle application server support entity manager to be thread safe?
Upvotes: 0
Views: 418
Reputation: 5663
The EJB standard doesn't allow for/support multithreaded EJBs, thus there's no need for the entitymanager to be threadsafe as it's never supposed to need that functionality.
Upvotes: 0