myBatis3与spring整合之使用SqlSession(SqlSessionDaoSupport类)

myBatis3与spring整合之使用SqlSession(SqlSessionDaoSupport类)

----------

 

注:这是手工编写实现的方式(其实可以直接使用注入映射器的)

 

SqlSessionDaoSupport

SqlSessionDaoSupport是一个抽象的支持类,用来为你提供SqlSession。调用getSqlSession()方法你会得到一个SqlSessionTemplate,这然后可以用于执行SQL方法,就像下面这样:

public class UserDaoImpl extends SqlSessionDaoSupport implements UserDao{
	public User getUser(String userId){
		return (User)getSqlSession().selectOne
			("org.mybatis.spring.sample.mapper.UserMapper.getUser",userId);
	}
}

通常MapperFactoryBean是这个类的首选,因为它不需要额外的代码。但是,如果你需要在DAO中做其它非MyBatis的工作或需要具体的类,那么这个类就是很有用了。SqlSessionDaoSupport需要一个sqlSessionFactory或sqlSessionTemplate属性来设置。这些被明确地设置或由Spring来自动装配。如果两者都被设置了,那么sqlSessionFactory是被忽略的。

假设类UserMapperImpl是SqlSessionDaoSupport的子类,它可以在Spring中进行如下的配置: 

<bean id="userMapper" class="org.mybatis.spring.sample.mapper.UserMapperImpl">
	<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值