public abstract class AbstractBaseDao extends BaseDao implements SpringJdbcDao, MybatisDao, HibernateDao
构造器和说明 |
---|
AbstractBaseDao() |
限定符和类型 | 方法和说明 |
---|---|
org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations |
getDao()
Users should use this method to get a NamedParameterJdbcOperations to call its statement methods
This is NamedParameterJdbcOperations is managed by spring.
|
org.hibernate.Session |
getSession()
Users should use this method to get a Session to call its statement methods
This is Session is managed by spring.
|
org.apache.ibatis.session.SqlSession |
getSqlSession()
Users should use this method to get a SqlSession to call its statement methods
This is SqlSession is managed by spring.
|
public org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations getDao()
SpringJdbcDao
getDao
在接口中 SpringJdbcDao
public org.hibernate.Session getSession()
HibernateDao
getSession
在接口中 HibernateDao
public org.apache.ibatis.session.SqlSession getSqlSession()
MybatisDao
getSqlSession
在接口中 MybatisDao
Copyright © 2015 jiucai.org. All rights reserved.