1 新建springboot项目
2 相关注解
@EnableCaching 在启动类上加上注解启动缓存
#作用在你要缓存的数据上
@Cacheable(key="#id",cacheNames="com.sxt.service.impl.MenuServiceImpl")
@Cacheput 解决脏读
@CachEvict(解决脏读)文章来源:https://www.toymoban.com/news/detail-606468.html
@Cacheconfig(全局的配置缓存)文章来源地址https://www.toymoban.com/news/detail-606468.html
3 修改yml
#
spring:
#数据源
datasource:
driver-class-name: co
到了这里,关于redis(12):springboot使用redis注解做缓存的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!