Package org.apache.ibatis.session
Interface SqlSessionFactory
- 
- All Known Implementing Classes:
 DefaultSqlSessionFactory,SqlSessionManager
public interface SqlSessionFactoryCreates anSqlSessionout of a connection or a DataSource- Author:
 - Clinton Begin
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationgetConfiguration()SqlSessionopenSession()SqlSessionopenSession(boolean autoCommit)SqlSessionopenSession(Connection connection)SqlSessionopenSession(ExecutorType execType)SqlSessionopenSession(ExecutorType execType, boolean autoCommit)SqlSessionopenSession(ExecutorType execType, Connection connection)SqlSessionopenSession(ExecutorType execType, TransactionIsolationLevel level)SqlSessionopenSession(TransactionIsolationLevel level) 
 - 
 
- 
- 
Method Detail
- 
openSession
SqlSession openSession()
 
- 
openSession
SqlSession openSession(boolean autoCommit)
 
- 
openSession
SqlSession openSession(Connection connection)
 
- 
openSession
SqlSession openSession(TransactionIsolationLevel level)
 
- 
openSession
SqlSession openSession(ExecutorType execType)
 
- 
openSession
SqlSession openSession(ExecutorType execType, boolean autoCommit)
 
- 
openSession
SqlSession openSession(ExecutorType execType, TransactionIsolationLevel level)
 
- 
openSession
SqlSession openSession(ExecutorType execType, Connection connection)
 
- 
getConfiguration
Configuration getConfiguration()
 
 - 
 
 -