@javax.ejb.Lock: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * EJB Annotations =Overview= <pre> @Lock public class A { ... } </pre> The default lock if LockType.WRITE.")
 
 
Line 13: Line 13:


The default lock if LockType.WRITE.
The default lock if LockType.WRITE.
More on Singleton beans concurrency is available here:
{{Internal|Singleton_Session_EJB#Concurrency|Singleton Beans Concurrency}}

Latest revision as of 21:28, 27 April 2017

Internal

Overview

@Lock
public class A {
    ...
}

The default lock if LockType.WRITE.

More on Singleton beans concurrency is available here:

Singleton Beans Concurrency