这篇文章将为大家详细讲解有关从零搭建Spring Boot脚手架中如何整合redis作为缓存,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
创新互联专业为企业提供成武网站建设、成武做网站、成武网站设计、成武网站制作等企业网站建设、网页设计与制作、成武企业网站模板建站服务,10余年成武做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
缓存是一个系统应用必备的一种功能,除了在减轻数据库的压力之外。还在存储一些短时效的数据场景中发挥着重大作用,比如存储用户Token、短信验证码等等,目前缓存的选型还是比较多的,EHCACHE、HAZELCAST、CAFFEINE、COUCHBASE以及本文要整合的REDIS。接下来我们将会在kono脚手架项目中集成Spring Cache以及Redis。
使项目具有缓存功能,同时将默认的JDK序列化修改为Jackson序列化以存储一些对象,同时实现一些特定的个性化的缓存空间以满足不同场景下的不同缓存TTL时间需求。
目前只需要引入下面的依赖即可:
org.springframework.boot spring-boot-starter-data-redis org.springframework.boot spring-boot-starter-cache org.apache.commons commons-pool2
默认情况下spring-data-redis使用高性能的lettuce客户端实现,当然你可以替换为老旧的jedis。
缓存以及Redis相关的配置项分别为spring.cache
和spring.redis
开头的配置,这里比较简单的配置为:
spring: redis: host: localhost port: 6379 cache: # type: REDIS redis: # 全局过期时间 time-to-live: 120
默认情况下会有两个模板类被注入Spring IoC供我们使用,需要个性化配置来满足实际的开发。
一个是RedisTemplate
,主要用于对象缓存,其默认使用JDK序列化,我们需要更改其序列化方式解决一些问题,比如Java 8日期问题、JSON序列化问题。需要我们重写一下。
/** * Redis的一些自定义配置. * * @author felord.cn * @since 2020 /8/17 20:39 */ @ConditionalOnClass(ObjectMapper.class) @Configuration(proxyBeanMethods = false) public class RedisConfiguration { /** * Redis template redis template. * * @param redisConnectionFactory the redis connection factory * @return the redis template */ @Bean("redisTemplate") public RedisTemplate
另一个是StringRedisTemplate
,主要处理键值都是字符串的缓存,采用默认就好。
使用Spring Cache做缓存的时候,有针对不同的key设置不同过期时间的场景。比如Jwt Token我想设置为一周过期,而验证码我想设置为五分钟过期。这个怎么实现呢?需要我们个性化配置RedisCacheManager
。首先我通过枚举来定义这些缓存及其TTL时间。例如:
/** * 缓存定义枚举 * * @author felord.cn * @see cn.felord.kono.configuration.CacheConfiguration * @since 2020/8/17 21:40 */ public enum CacheEnum { /** * 用户jwt token 缓存空间 ttl 7天 */ JWT_TOKEN_CACHE("usrTkn", 7 * 24 * 60 * 60), /** * 验证码缓存 5分钟ttl */ SMS_CAPTCHA_CACHE("smsCode", 5 * 60); /** * 缓存名称 */ private final String cacheName; /** * 缓存过期秒数 */ private final int ttlSecond; CacheEnum(String cacheName, int ttlSecond) { this.cacheName = cacheName; this.ttlSecond = ttlSecond; } public String cacheName() { return this.cacheName; } public int ttlSecond() { return this.ttlSecond; } }
这样就能很清楚地描述个性化的缓存了。
然后我们通过向Spring IoC分别注入RedisCacheConfiguration
和RedisCacheManagerBuilderCustomizer
来个性化配置,你可以留意CacheEnum
是如何工作的。如果你有其它的个性化需要也可以对这两个配置类进行定制化。
import cn.felord.kono.enumeration.CacheEnum; import org.springframework.boot.autoconfigure.cache.CacheProperties; import org.springframework.boot.autoconfigure.cache.RedisCacheManagerBuilderCustomizer; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.cache.RedisCacheManager; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.RedisSerializationContext; import java.time.Duration; import java.util.EnumSet; import java.util.stream.Collectors; /** * redis 缓存配置. * * @author felord.cn * @since 2020 /8/17 20:14 */ @EnableCaching @Configuration public class CacheConfiguration { /** * Redis cache configuration. * * @param redisTemplate the redis template * @return the redis cache configuration */ @Bean public RedisCacheConfiguration redisCacheConfiguration(RedisTemplateredisTemplate, CacheProperties cacheProperties) { // 参见 spring.cache.redis CacheProperties.Redis redisProperties = cacheProperties.getRedis(); RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig() // 缓存的序列化问题 .serializeValuesWith(RedisSerializationContext.SerializationPair .fromSerializer(redisTemplate.getValueSerializer())); if (redisProperties.getTimeToLive() != null) { // 全局 TTL 时间 redisCacheConfiguration = redisCacheConfiguration.entryTtl(redisProperties.getTimeToLive()); } if (redisProperties.getKeyPrefix() != null) { // key 前缀值 redisCacheConfiguration = redisCacheConfiguration.prefixCacheNameWith(redisProperties.getKeyPrefix()); } if (!redisProperties.isCacheNullValues()) { // 默认缓存null值 可以防止缓存穿透 redisCacheConfiguration = redisCacheConfiguration.disableCachingNullValues(); } if (!redisProperties.isUseKeyPrefix()) { // 不使用key前缀 redisCacheConfiguration = redisCacheConfiguration.disableKeyPrefix(); } return redisCacheConfiguration; } /** * Redis cache manager 个性化配置缓存过期时间. * @see RedisCacheManager,CacheEnum * @return the redis cache manager builder customizer */ @Bean public RedisCacheManagerBuilderCustomizer redisCacheManagerBuilderCustomizer(RedisCacheConfiguration redisCacheConfiguration) { return builder -> builder.cacheDefaults(redisCacheConfiguration) // 自定义的一些缓存配置初始化 主要是特定缓存及其ttl时间 .withInitialCacheConfigurations(EnumSet.allOf(CacheEnum.class).stream() .collect(Collectors.toMap(CacheEnum::cacheName, cacheEnum -> redisCacheConfiguration.entryTtl(Duration.ofSeconds(cacheEnum.ttlSecond()))))); } }
个性化的同时我们可以通过注解@EnableCaching
开启Spring Cache缓存支持。关于Spring Cache的细节可以通过文章Spring Cache详解来了解。
> 请注意,只有通过Spring Cache操作缓存才会达到上图的效果。命令行操作需要显式的声明指令。
关于从零搭建Spring Boot脚手架中如何整合Redis作为缓存就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。