Package | Description |
---|---|
org.apache.ibatis.binding |
Bings mapper interfaces with mapped statements
|
org.apache.ibatis.session |
Base package.
|
org.apache.ibatis.session.defaults |
Default impl for SqlSession.
|
Modifier and Type | Method and Description |
---|---|
Object |
MapperMethod.execute(SqlSession sqlSession,
Object[] args) |
<T> T |
MapperRegistry.getMapper(Class<T> type,
SqlSession sqlSession) |
T |
MapperProxyFactory.newInstance(SqlSession sqlSession) |
Constructor and Description |
---|
MapperProxy(SqlSession sqlSession,
Class<T> mapperInterface,
Map<Method,MapperMethod> methodCache) |
Modifier and Type | Class and Description |
---|---|
class |
SqlSessionManager |
Modifier and Type | Method and Description |
---|---|
SqlSession |
SqlSessionManager.openSession() |
SqlSession |
SqlSessionFactory.openSession() |
SqlSession |
SqlSessionManager.openSession(boolean autoCommit) |
SqlSession |
SqlSessionFactory.openSession(boolean autoCommit) |
SqlSession |
SqlSessionManager.openSession(Connection connection) |
SqlSession |
SqlSessionFactory.openSession(Connection connection) |
SqlSession |
SqlSessionManager.openSession(ExecutorType execType) |
SqlSession |
SqlSessionFactory.openSession(ExecutorType execType) |
SqlSession |
SqlSessionManager.openSession(ExecutorType execType,
boolean autoCommit) |
SqlSession |
SqlSessionFactory.openSession(ExecutorType execType,
boolean autoCommit) |
SqlSession |
SqlSessionManager.openSession(ExecutorType execType,
Connection connection) |
SqlSession |
SqlSessionFactory.openSession(ExecutorType execType,
Connection connection) |
SqlSession |
SqlSessionManager.openSession(ExecutorType execType,
TransactionIsolationLevel level) |
SqlSession |
SqlSessionFactory.openSession(ExecutorType execType,
TransactionIsolationLevel level) |
SqlSession |
SqlSessionManager.openSession(TransactionIsolationLevel level) |
SqlSession |
SqlSessionFactory.openSession(TransactionIsolationLevel level) |
Modifier and Type | Method and Description |
---|---|
<T> T |
Configuration.getMapper(Class<T> type,
SqlSession sqlSession) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultSqlSession
The default implementation for
SqlSession . |
Modifier and Type | Method and Description |
---|---|
SqlSession |
DefaultSqlSessionFactory.openSession() |
SqlSession |
DefaultSqlSessionFactory.openSession(boolean autoCommit) |
SqlSession |
DefaultSqlSessionFactory.openSession(Connection connection) |
SqlSession |
DefaultSqlSessionFactory.openSession(ExecutorType execType) |
SqlSession |
DefaultSqlSessionFactory.openSession(ExecutorType execType,
boolean autoCommit) |
SqlSession |
DefaultSqlSessionFactory.openSession(ExecutorType execType,
Connection connection) |
SqlSession |
DefaultSqlSessionFactory.openSession(ExecutorType execType,
TransactionIsolationLevel level) |
SqlSession |
DefaultSqlSessionFactory.openSession(TransactionIsolationLevel level) |
Copyright © 2010–2015 MyBatis.org. All rights reserved.