648540858
2021-12-20 22efd0f56c20e1aedb18fa7b9bcdc48007fcc954
src/main/java/com/genersoft/iot/vmp/conf/RedisConfig.java
@@ -1,5 +1,7 @@
package com.genersoft.iot.vmp.conf;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@@ -10,15 +12,48 @@
import com.alibaba.fastjson.parser.ParserConfig;
import com.genersoft.iot.vmp.utils.redis.FastJsonRedisSerializer;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
/**
 * @Description:Redis中间件配置类,使用spring-data-redis集成,自动从application.yml中加载redis配置
 * @author: songww
 * @description:Redis中间件配置类,使用spring-data-redis集成,自动从application.yml中加载redis配置
 * @author: swwheihei
 * @date: 2019年5月30日 上午10:58:25
 * 
 */
@Configuration
public class RedisConfig extends CachingConfigurerSupport {
   @Value("${spring.redis.host}")
   private String host;
   @Value("${spring.redis.port}")
   private int port;
   @Value("${spring.redis.database}")
   private int database;
   @Value("${spring.redis.password}")
   private String password;
   @Value("${spring.redis.timeout}")
   private int timeout;
   @Value("${spring.redis.poolMaxTotal:1000}")
   private int poolMaxTotal;
   @Value("${spring.redis.poolMaxIdle:500}")
   private int poolMaxIdle;
   @Value("${spring.redis.poolMaxWait:5}")
   private int poolMaxWait;
   @Bean
   public JedisPool jedisPool() {
      if (StringUtils.isBlank(password)) {
         password = null;
      }
      JedisPoolConfig poolConfig = new JedisPoolConfig();
      poolConfig.setMaxIdle(poolMaxIdle);
      poolConfig.setMaxTotal(poolMaxTotal);
      // 秒转毫秒
      poolConfig.setMaxWaitMillis(poolMaxWait * 1000L);
      JedisPool jp = new JedisPool(poolConfig, host, port, timeout * 1000, password, database);
      return jp;
   }
   @Bean("redisTemplate")
   public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
@@ -34,7 +69,7 @@
      template.setHashKeySerializer(new StringRedisSerializer());
      template.setConnectionFactory(redisConnectionFactory);
      // 使用fastjson时需设置此项,否则会报异常not support type
      ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
      ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
      return template;
   }
@@ -43,7 +78,6 @@
    * 通过反射技术调用消息订阅处理器的相关方法进行一些业务处理
    * 
    * @param connectionFactory
    * @param listenerAdapter
    * @return
    */
   @Bean