package com.ks.lijin.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 {
|
|
@Value("${spring.redis.host}")
|
private String addr;
|
@Value("${spring.redis.port}")
|
private int port;
|
@Value("${spring.redis.timeout}")
|
private String timeout;
|
@Value("${spring.redis.password}")
|
private String auth;
|
@Value("${spring.redis.database}")
|
private int database;
|
@Value("${spring.redis.jedis.pool.max-total}")
|
private int maxTotal;
|
@Value("${spring.redis.jedis.pool.max-idle}")
|
private int maxIdle;
|
@Value("${spring.redis.jedis.pool.test_on_borrow}")
|
private boolean testOnBorrow;
|
|
|
Logger log = LoggerFactory.getLogger(RedisConfig.class);
|
|
@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 poolConfig = new JedisPoolConfig();
|
poolConfig.setMaxTotal(maxTotal);
|
poolConfig.setMaxIdle(maxIdle);
|
poolConfig.setTestOnBorrow(testOnBorrow);
|
return new JedisPool(poolConfig, addr, port, Integer.parseInt(timeout.replace("ms", "").trim()), auth, database);
|
}
|
}
|