Mybatis|注解开启二级缓存

  使用步骤:
    1. 让Mybatis框架支持二级缓存(在SqlMapConfig.xml中配置)

    <settings>
        <setting name="cacheEnabled" value="true"/>
    settings>

    2. 在需要开启二级缓存的dao接口中设置@CacheNamespace注解

   @CacheNamespace(blocking = true)
   public interface UserMapper {

    3. 第一次执行查询后清空一级缓存。

 	session.close();

你可能感兴趣的:(Mybatis)