Package org.sqlproc.engine
Interface SqlSessionFactory
-
- All Known Implementing Classes:
JdbcSessionFactory
public interface SqlSessionFactoryThe factory definition, which can be used to construct theSqlSessioninstances.The factory can be based on Spring DI framework for example.
For more info please see the Tutorials.
- Author:
- Vladimir Hudec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlSessiongetSqlSession()The main contract of this factory.
-
-
-
Method Detail
-
getSqlSession
SqlSession getSqlSession()
The main contract of this factory.- Returns:
- the instance of the SqlSession
-
-