springboot中redisconfig放在哪

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中redisconfig放在哪相关的知识,希望对你有一定的参考价值。

参考技术A springboot集成redis。redisconfig配置

@Configuration
public class RedisConfig

@Bean
@SuppressWarnings(“all”)
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory)
RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
template.setConnectionFactory(factory);
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);
StringRedisSerializer stringRedisSerializer = new StringRedisSerializer();

以上是关于springboot中redisconfig放在哪的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot的整合(整合redis)

通用RedisConfig配置

SpringBoot 开启Redis缓存

java RedisConfig

spring data redis的配置类RedisConfig

springboot怎么访问static里面的js