关于Mybatis的一级缓存整合Spring时失效(Mybatis的代理对象在使用时注入!!!)

总所周知Mybatis提供了一级缓存二级缓存,在执行同一个sql且参数都一致的条件下,Mybatis不会再去Mysql中查,而是直接从缓存中去取。
刚刚做了次一级缓存的验证,但是问题来了,发现同一个请求,Mybatis却执行了2次sql,这不就是一级缓存失效了吗?
临时搭了一个测试环境SpringBoot,其中有一个controller,service,mapper,entity,做简单了层次调用。
在配置文件中开启打印sql,发现同一个接口的2次请求,sql语句却打印了2次,这无疑说明了mybatis走了2次sql,缓存确实失效了,如图。
关于Mybatis的一级缓存整合Spring时失效(Mybatis的代理对象在使用时注入!!!)
而一级缓存的作用域是sqlSession级别的,这个2个sql创建了2个SqlSession吗?
带着问题继续走,我又把service层调用了2次sql,写法如下:

 		List<Student> students = studentMapper.selectAllStudent();
        List<Student> students2 = studentMapper.selectAllStudent();

这次访问接口,后台却又只打印了1次sql,证明这种写法一级缓存生效了。
debug一看,恍然大悟
关于Mybatis的一级缓存整合Spring时失效(Mybatis的代理对象在使用时注入!!!)
mapper层的studentMapper代理对象就是mybatis动态生成的,而代理对象又是基于sqlSession获取的,所以这种调用肯定是在同一个sqlSession中啊(失算!)

既然service层中一级缓存有效,那么再看controller层,
又在controller层直接调用了2次方法,发现sql又打印了2次,再次debug一看,找到了原因如下:
关于Mybatis的一级缓存整合Spring时失效(Mybatis的代理对象在使用时注入!!!)
controller中的studentServiceImpl中的studentMapper属性为空!
controller中的studentServiceImpl中的studentMapper属性为空!
controller中的studentServiceImpl中的studentMapper属性为空!

证明在controller层开始,mybatis的动态代理类对象并没有注入到studentServiceImpl中,而是在调用到该类的方法时才动态生成动态注入,且每次调用都会开辟一个sqlSession然后再动态生成一个新的代理对象。

上一篇:Spring结合Mybatis和声明式事务


下一篇:Java 清除指定目录文件夹下文件