22 lines
869 B
Java
22 lines
869 B
Java
|
|
package com.chowbox.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.data.redis.connection.RedisConnectionFactory;
|
||
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
||
|
|
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
|
||
|
|
import org.springframework.data.redis.serializer.StringRedisSerializer;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
public class RedisConfig {
|
||
|
|
|
||
|
|
@Bean
|
||
|
|
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
|
||
|
|
RedisTemplate<String, Object> template = new RedisTemplate<>();
|
||
|
|
template.setConnectionFactory(factory);
|
||
|
|
template.setKeySerializer(new StringRedisSerializer());
|
||
|
|
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
|
||
|
|
return template;
|
||
|
|
}
|
||
|
|
}
|