通过前面我的这篇文章《MyBatis 中 SqlSession 是线程安全的吗?》多数人看完都说,喜欢看!但是我在群里提问了一个问题,Mybatis 不是有 SqlSessionManager 了吗?为什么又提供了SqlSessionTemplate?
然而,多数人都答不上来。看来多思考还是少数人才喜欢生活方式。
那么本文就说一说,Mybatis 中有一个线程不安全的 DefaultSqlSession,和一个线程安全的 SqlSessionManager。通过它们都可以获取到 SqlSession,哪为什么有设计了一个 SqlSessionTemplate 呢?SqlSessionTemplate 是不是没有存在的必要?
其实这个答案啊,我在《MyBatis 中 SqlSession 是线程安全的吗?》文章中已经总结过了,现在再把重点内容截图如下:
上面其实只解释了一部分。那就是 SqlSessionManager 是由调用者决定是否共用 SqlSession 的。而 SqlSessionTemplate 是 MyBatis 专门为 Spring 提供的,支持 Spring 框架的一个 SqlSession 获取接口。主要是为了继承 Spring,并同时将是否共用 SqlSession 的权限交给 Spring 去管理。
这一点,我们通过它们所在包的命令也可以看出来。org.mybatis.spring.SqlSessionTemplate 一看包名就知道,它是为嫁接 Spring 而提供的。并且它实现了 Spring 的 DisposableBean 接口。
SqlSessionManager 是适合在不整合 Spring 框架的时候使用。并且是在一开始,2009 年就推出了这个类。但是自从有了 Spring,配合 Spring 以后,SqlSessionTemplate 类就逐渐取代了 SqlSessionManager。
大家在使用 MyBatis 时,基本上都是会和 Spring 进行继承的。因此 SqlSessionManager 基本上被抛弃,目前各个开源项目中基本上都没有见到 SqlSessionManager 的身影。为了和 Spring 能够更好的整合,因此,我们都是用 SqlSessionTemplate 来获取 SqlSession。
: » Mybatis 不是有 SqlSessionManager 了吗?为什么有提供了SqlSessionTemplate?
原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/252062.html