|
@@ -0,0 +1,110 @@
|
|
|
+package cn.com.ty.lift.push.conf;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
|
+import com.fasterxml.jackson.annotation.PropertyAccessor;
|
|
|
+import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
+import com.fasterxml.jackson.databind.SerializationFeature;
|
|
|
+import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
|
|
|
+import org.springframework.cache.CacheManager;
|
|
|
+import org.springframework.cache.annotation.CachingConfigurerSupport;
|
|
|
+import org.springframework.cache.annotation.EnableCaching;
|
|
|
+import org.springframework.cache.interceptor.KeyGenerator;
|
|
|
+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.connection.RedisConnectionFactory;
|
|
|
+import org.springframework.data.redis.core.RedisTemplate;
|
|
|
+import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
|
|
|
+import org.springframework.data.redis.serializer.RedisSerializationContext;
|
|
|
+import org.springframework.data.redis.serializer.RedisSerializer;
|
|
|
+import org.springframework.data.redis.serializer.StringRedisSerializer;
|
|
|
+
|
|
|
+import java.lang.reflect.Method;
|
|
|
+import java.time.Duration;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author huangyuan
|
|
|
+ * @date 2020/5/29
|
|
|
+ * @description
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+@EnableCaching
|
|
|
+public class RedisConfig extends CachingConfigurerSupport {
|
|
|
+ /**
|
|
|
+ * 设置自动key的生成规则,配置spring boot的注解,进行方法级别的缓存
|
|
|
+ */
|
|
|
+ @Bean
|
|
|
+ @Override
|
|
|
+ public KeyGenerator keyGenerator() {
|
|
|
+ return new KeyGenerator() {
|
|
|
+ @Override
|
|
|
+ public Object generate(Object target, Method method, Object... params) {
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+ sb.append(target.getClass().getName());
|
|
|
+ sb.append(method.getName());
|
|
|
+ for (Object param : params) {
|
|
|
+ sb.append(param.toString());
|
|
|
+ }
|
|
|
+ return sb.toString();
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缓存管理
|
|
|
+ */
|
|
|
+ @SuppressWarnings({ "rawtypes", "unchecked" })
|
|
|
+ @Bean
|
|
|
+ public CacheManager cacheManager(RedisConnectionFactory factory) {
|
|
|
+ // 初始化缓存管理器
|
|
|
+ RedisSerializer<String> redisSerializer = new StringRedisSerializer();
|
|
|
+ Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
|
|
|
+
|
|
|
+ //解决查询缓存转换异常的问题
|
|
|
+ ObjectMapper om = new ObjectMapper();
|
|
|
+ om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
|
|
|
+ om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
|
|
|
+ jackson2JsonRedisSerializer.setObjectMapper(om);
|
|
|
+
|
|
|
+ // 配置序列化(解决乱码的问题),过期时间30秒
|
|
|
+ RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig()
|
|
|
+ .entryTtl(Duration.ofSeconds(30))
|
|
|
+ .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(redisSerializer))
|
|
|
+ .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(jackson2JsonRedisSerializer))
|
|
|
+ .disableCachingNullValues();
|
|
|
+
|
|
|
+ RedisCacheManager cacheManager = RedisCacheManager.builder(factory)
|
|
|
+ .cacheDefaults(config)
|
|
|
+ .build();
|
|
|
+ return cacheManager;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean("redisTemplate")
|
|
|
+ public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory jedisConnectionFactory) {
|
|
|
+
|
|
|
+ Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
|
|
|
+ ObjectMapper om = new ObjectMapper();
|
|
|
+ om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
|
|
|
+ om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
|
|
|
+ jackson2JsonRedisSerializer.setObjectMapper(om);
|
|
|
+ //解决jackson2无法反序列化LocalDateTime的问题
|
|
|
+ om.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
|
|
|
+ om.registerModule(new JavaTimeModule());
|
|
|
+ // 配置redisTemplate
|
|
|
+ RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
|
|
|
+ redisTemplate.setConnectionFactory(jedisConnectionFactory);
|
|
|
+ RedisSerializer<String> stringSerializer = new StringRedisSerializer();
|
|
|
+ // key序列化
|
|
|
+ redisTemplate.setKeySerializer(stringSerializer);
|
|
|
+ // value序列化
|
|
|
+ redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);
|
|
|
+ // Hash key序列化
|
|
|
+ redisTemplate.setHashKeySerializer(stringSerializer);
|
|
|
+ // Hash value序列化
|
|
|
+ redisTemplate.setHashValueSerializer(jackson2JsonRedisSerializer);
|
|
|
+ redisTemplate.afterPropertiesSet();
|
|
|
+ return redisTemplate;
|
|
|
+
|
|
|
+ }
|
|
|
+}
|