2022-03-12 SpringBoot 使用redis做缓存,设置失效时间以及序列化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2022-03-12 SpringBoot 使用redis做缓存,设置失效时间以及序列化相关的知识,希望对你有一定的参考价值。

参考技术A

SpringBoot的cache缓存,是针对返回值的一种操作
springboot使用redis做缓存时,默认只需要导入redis依赖,即可实现使用redis做缓存

不需要导入cache依赖
在启动类上加上 @EnableCaching 即可开启缓存功能
关于各个注解的使用,这里不再细说,网上详细的教程很多,这里主要讲一下如何指定过期时间

默认是永不过期,如果需要指定过期时间,则需要增加配置类

以上是关于2022-03-12 SpringBoot 使用redis做缓存,设置失效时间以及序列化的主要内容,如果未能解决你的问题,请参考以下文章

2022-03-12:k8s如何搭建gogs+drone实现自动化部署cicd,yaml如何写?

SpringBoot - 实现启动时执行指定任务(CommandLineRunnerApplicationRunner)

Springboot的监控Springboot Actuator

Springboot的监控Springboot Actuator

springboot 使用Redis

SpringBoot 中 jdbctemplate 的使用