Are Session Beans (stateless session beans, stateful session beans) Synchronized?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Only one thread at a time will be accessing your beans. It is up to the application server to manage this. So you should not be using synchronized from within your beans. This is why a non-threadsafe like EntityManager can be an instance value and not have synchronization issues. |
|||||||||
|
|
Very True thing about EJB beans is that once you have created EJB 3.0 beans then the methods of the EJB is by default Synchronized. e.g. @Statelss Class EJBclass { void someMethod(){ } } now if you will make this someMethod Synchronize it will show Error like it is can not be Synchronize at this level as it is synchronized. EJB 3.0 Beans are smart and performance is good. |
|||
|
|