使用redis管理Mybatis-Plus的二级缓存

大部分都与【使用redis管理Mybatis的二级缓存】这篇博客中的一样,部分不一样的地方:

 

  • 在 springboot 项目中开启 mybatis-plus 的二级缓存
mybatis-plus:
  mapper-locations: classpath:com/erow/mapper/*.xml
  type-aliases-package: com.erow.entity
  configuration:
    cache-enabled: true
  • 在 SupplierMapper.xml 中指定用到了哪一个 Mapper 的缓存
    
    
  • 同时在对应的 mapper 上加上注解
@CacheNamespace(implementation = RedisCache.class,eviction = RedisCache.class)
  • 如果按照之前 Mybatis 方式配置二级缓存的话,你会发现自带的方法是无法更新缓存内容的。

你可能感兴趣的:(Redis,Mybatis-Plus,二级缓存,redis)