| | |
| | | package com.zy.common.config; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonAutoDetect; |
| | | import com.fasterxml.jackson.annotation.JsonTypeInfo; |
| | | import com.fasterxml.jackson.annotation.PropertyAccessor; |
| | | import com.fasterxml.jackson.databind.ObjectMapper; |
| | | import org.springframework.cache.annotation.CachingConfigurerSupport; |
| | | import org.springframework.cache.annotation.CachingConfigurer; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.data.redis.connection.RedisConnectionFactory; |
| | |
| | | */ |
| | | @Configuration |
| | | //@EnableCaching // 开启数据缓存机制 |
| | | public class RedisConfig extends CachingConfigurerSupport { |
| | | public class RedisConfig implements CachingConfigurer { |
| | | |
| | | |
| | | /** |
| | |
| | | template.setConnectionFactory(factory); |
| | | |
| | | //使用Jackson2JsonRedisSerializer来序列化和反序列化redis的value值(默认使用JDK的序列化方式) |
| | | Jackson2JsonRedisSerializer<Object> jacksonSerializer = new Jackson2JsonRedisSerializer<>(Object.class); |
| | | |
| | | ObjectMapper om = new ObjectMapper(); |
| | | // 指定要序列化的域,field,get和set,以及修饰符范围,ANY是都有包括private和public |
| | | om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); |
| | | // 指定序列化输入的类型,类必须是非final修饰的,final修饰的类,比如String,Integer等会跑出异常 |
| | | om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); |
| | | jacksonSerializer.setObjectMapper(om); |
| | | om.activateDefaultTyping(om.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.NON_FINAL, JsonTypeInfo.As.PROPERTY); |
| | | Jackson2JsonRedisSerializer<Object> jacksonSerializer = new Jackson2JsonRedisSerializer<>(om, Object.class); |
| | | |
| | | // 值采用json序列化 |
| | | template.setValueSerializer(jacksonSerializer); |