Annotation Type Pessimistic


@Retention(RUNTIME) @Target(TYPE) @Inherited public @interface Pessimistic
Specifies that pessimistic concurrency control should be used. This means that a read or write operation may block or be rejected if another user is manipulating the same object in a conflicting manner. If no other annotation appears to override this, then pessimistic is the default for a transactional object.
Author:
marklittle