mybatis注解开发-缓存的开启

一级缓存(SqlSession对象的缓存),不用操作

二级缓存的开启(SqlSessionFactory对象的缓存):

  • 主配置文件SqlMapConfig.xml中配置,默认也是true,可以不用写
    
        
        
    
  • dao接口使用注解@CacheNamespace(blocking = true)
    
@CacheNamespace(blocking = true)
public interface AccountDao {
    
}

 

 

你可能感兴趣的:(------【mybatis】)