Java org.springframework.transaction.annotation Isolation fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.transaction.annotation Isolation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.transaction.annotation Isolation.

The text is from its open source code.

Field

IsolationDEFAULT
Use the default isolation level of the underlying datastore.
IsolationREAD_UNCOMMITTED
A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.
IsolationREAD_COMMITTED
A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur.
IsolationREPEATABLE_READ
A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur.
IsolationSERIALIZABLE
A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented.
intvalue