网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

sqlsessiontemplate 使用教程

时间:2024-10-12 21:29:46

1、在使用Mybatis与Spring集成的时候我们用到了SqlSessionTemplate 这个类。

sqlsessiontemplate 使用教程

2、通过源码我们何以看到SqlSessionTemplate 实现了SqlSession接口,也就是说我们可以使吹涡皋陕用SqlSessionTemplate 来代理以往的DefailtSqlSession完成对数据库的操作

sqlsessiontemplate 使用教程

3、但是DefailtSqlSession这个类不是线程安全的,所以这个类不可以被设置成单例模式的。

sqlsessiontemplate 使用教程

4、如果是常规开发模式 我们每次在使用DefailtSqlSession的时候都从SqlSessionFactory当中获取一个就可以了。

sqlsessiontemplate 使用教程

5、但是与Spring集成以后,Spring提供了一个全局唯一的SqlSessionTemplate示例 来完成DefailtSqlSession的功能

sqlsessiontemplate 使用教程

6、当多个web线程调用同一个dao时,它们使用的是同一个SqlSessionTemplate,也就是同一个SqlSession

sqlsessiontemplate 使用教程
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com