springboot redis 设置过期时间
时间: 2023-08-29 07:05:51 浏览: 194
在Spring Boot中设置Redis的缓存过期时间可以通过以下几个步骤来完成:
1. 在`application.yml`文件中添加Redis的配置信息,包括主机名、端口号、数据库、密码等。例如:
```
spring:
redis:
host: localhost
port: 6379
database: 0
password: *****
timeout: 10000
```
2. 在入口函数所在的类上添加`@EnableCaching`注解来开启缓存功能。例如:
```
@SpringBootApplication
@EnableCaching
public class CommonApplication {
public static void main(String[] args) {
SpringApplication.run(CommonApplication.class, args);
}
}
```
3. 在需要缓存的方法上使用`@Cacheable`注解,并指定缓存的名称和过期时间。例如:
```
@Cacheable(value = "cacheName", key = "'cacheKey'", expireTime = 3600)
public String cachedMethod() {
// 执行方法体逻辑
}
```
在这个例子中,`value`指定了缓存的名称,`key`指定了缓存的键,`expireTime`指定了缓存的过期时间,单位为秒。需要注意的是,`key`的值可以是一个表达式,用来动态生成键的值。
通过以上步骤,你可以在Spring Boot中设置Redis的缓存过期时间。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [spring boot 缓存redis设置定时过期时间](https://blog.csdn.net/zjgxxxxxxx/article/details/125680857)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文