首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
enablecaching专题
Spring Boot+Guava Cache+@EnableCaching
Spring Boot集成Guava Cache并配合@EnableCaching注解管理本地缓存 依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId></dependency><!-- https://mvnrepositor
阅读更多...
springboot 开启缓存 @EnableCaching(使用redis)
添加依赖 pom.xml <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency> application.yml 配置redis连参数 spring:# redis 配置redis:# 地址host
阅读更多...