Uses of Class
org.apache.ibatis.session.TransactionIsolationLevel
-
Packages that use TransactionIsolationLevel Package Description org.apache.ibatis.session Base package.org.apache.ibatis.session.defaults Default impl for SqlSession.org.apache.ibatis.transaction Base package for transactions.org.apache.ibatis.transaction.jdbc JDBC transaction.org.apache.ibatis.transaction.managed External transaction. -
-
Uses of TransactionIsolationLevel in org.apache.ibatis.session
Methods in org.apache.ibatis.session that return TransactionIsolationLevel Modifier and Type Method Description static TransactionIsolationLevel
TransactionIsolationLevel. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TransactionIsolationLevel[]
TransactionIsolationLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ibatis.session with parameters of type TransactionIsolationLevel Modifier and Type Method Description SqlSession
SqlSessionFactory. openSession(ExecutorType execType, TransactionIsolationLevel level)
SqlSession
SqlSessionFactory. openSession(TransactionIsolationLevel level)
SqlSession
SqlSessionManager. openSession(ExecutorType execType, TransactionIsolationLevel level)
SqlSession
SqlSessionManager. openSession(TransactionIsolationLevel level)
void
SqlSessionManager. startManagedSession(ExecutorType execType, TransactionIsolationLevel level)
void
SqlSessionManager. startManagedSession(TransactionIsolationLevel level)
-
Uses of TransactionIsolationLevel in org.apache.ibatis.session.defaults
Methods in org.apache.ibatis.session.defaults with parameters of type TransactionIsolationLevel Modifier and Type Method Description SqlSession
DefaultSqlSessionFactory. openSession(ExecutorType execType, TransactionIsolationLevel level)
SqlSession
DefaultSqlSessionFactory. openSession(TransactionIsolationLevel level)
-
Uses of TransactionIsolationLevel in org.apache.ibatis.transaction
Methods in org.apache.ibatis.transaction with parameters of type TransactionIsolationLevel Modifier and Type Method Description Transaction
TransactionFactory. newTransaction(javax.sql.DataSource dataSource, TransactionIsolationLevel level, boolean autoCommit)
Creates aTransaction
out of a datasource. -
Uses of TransactionIsolationLevel in org.apache.ibatis.transaction.jdbc
Fields in org.apache.ibatis.transaction.jdbc declared as TransactionIsolationLevel Modifier and Type Field Description protected TransactionIsolationLevel
JdbcTransaction. level
Methods in org.apache.ibatis.transaction.jdbc with parameters of type TransactionIsolationLevel Modifier and Type Method Description Transaction
JdbcTransactionFactory. newTransaction(javax.sql.DataSource ds, TransactionIsolationLevel level, boolean autoCommit)
Constructors in org.apache.ibatis.transaction.jdbc with parameters of type TransactionIsolationLevel Constructor Description JdbcTransaction(javax.sql.DataSource ds, TransactionIsolationLevel desiredLevel, boolean desiredAutoCommit)
-
Uses of TransactionIsolationLevel in org.apache.ibatis.transaction.managed
Methods in org.apache.ibatis.transaction.managed with parameters of type TransactionIsolationLevel Modifier and Type Method Description Transaction
ManagedTransactionFactory. newTransaction(javax.sql.DataSource ds, TransactionIsolationLevel level, boolean autoCommit)
Constructors in org.apache.ibatis.transaction.managed with parameters of type TransactionIsolationLevel Constructor Description ManagedTransaction(javax.sql.DataSource ds, TransactionIsolationLevel level, boolean closeConnection)
-