package com.ks.vip.config;
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
import com.fasterxml.jackson.annotation.PropertyAccessor;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
import org.slf4j.Logger;
|
import org.slf4j.LoggerFactory;
|
import org.springframework.beans.factory.annotation.Value;
|
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.Jackson2JsonRedisSerializer;
|
import org.springframework.data.redis.serializer.StringRedisSerializer;
|
import redis.clients.jedis.JedisPool;
|
import redis.clients.jedis.JedisPoolConfig;
|
|
@Configuration
|
public class RedisConfig {
|
Logger log = LoggerFactory.getLogger(RedisConfig.class);
|
|
|
@Value("${spring.redis.jedis.pool.max-total}")
|
private int maxTotal;
|
@Value("${spring.redis.jedis.pool.max-idle}")
|
private int maxIdle;
|
private boolean testOnBorrow = true;
|
@Value("${spring.redis.host}")
|
private String host;
|
@Value("${spring.redis.port}")
|
private int port;
|
@Value("${spring.redis.timeout}")
|
private String timeout;
|
@Value("${spring.redis.password}")
|
private String password;
|
@Value("${spring.redis.database}")
|
private int database;
|
|
|
@Bean
|
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
|
RedisTemplate<String, Object> template = new RedisTemplate<>();
|
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();
|
// key采用String的序列化方式
|
template.setKeySerializer(stringRedisSerializer);
|
// hash的key也采用String的序列化方式
|
template.setHashKeySerializer(stringRedisSerializer);
|
// value序列化方式采用jackson
|
template.setValueSerializer(jackson2JsonRedisSerializer);
|
// hash的value序列化方式采用jackson
|
template.setHashValueSerializer(jackson2JsonRedisSerializer);
|
template.afterPropertiesSet();
|
return template;
|
}
|
|
|
@Bean
|
public JedisPool jedisPool() {
|
JedisPoolConfig config = new JedisPoolConfig();
|
config.setMaxTotal(maxTotal);
|
config.setMaxIdle(maxIdle);
|
config.setTestOnBorrow(testOnBorrow);
|
JedisPool jedisPool = new JedisPool(config, host, port, Integer.parseInt(timeout.replace("ms", "")), password, database);
|
return jedisPool;
|
}
|
|
}
|