用户要使用到他们的应用OSCache的,有下载的 zip包,解压缩,并在classpath中添加的罐子; Apache Maven用户的,而不是可以简单地添加在pom.xml中下面的依赖:
<dependencies>
...
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-oscache</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
...
</dependencies>
然后,仅仅配置XML映射
<mapper namespace="org.acme.FooMapper">
<cache type="org.mybatis.caches.oscache.OSCache"/>
...
</mapper>
如果用户需要登录缓存操作,它们可以堵塞缓存日志记录的版本:
<mapper namespace="org.acme.FooMapper">
<cache type="org.mybatis.caches.oscache.LoggingOSCache"/>
...
</mapper>
适当的OSCache的配置,请阅读官方 参考