2020-05-07 21:55:45 +08:00
|
|
|
|
package com.genersoft.iot.vmp.conf;
|
|
|
|
|
|
2022-08-10 18:14:33 +08:00
|
|
|
|
import com.alibaba.fastjson.parser.ParserConfig;
|
2022-01-07 19:37:05 +08:00
|
|
|
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
2022-07-12 17:33:17 +08:00
|
|
|
|
import com.genersoft.iot.vmp.service.impl.*;
|
2021-07-26 11:40:32 +08:00
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
2022-01-07 19:37:05 +08:00
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
2021-07-26 11:40:32 +08:00
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
2020-05-07 21:55:45 +08:00
|
|
|
|
import org.springframework.cache.annotation.CachingConfigurerSupport;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
import org.springframework.data.redis.connection.RedisConnectionFactory;
|
2022-08-10 18:14:33 +08:00
|
|
|
|
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
|
2020-05-07 21:55:45 +08:00
|
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
2022-01-07 19:37:05 +08:00
|
|
|
|
import org.springframework.data.redis.listener.PatternTopic;
|
2020-05-07 21:55:45 +08:00
|
|
|
|
import org.springframework.data.redis.listener.RedisMessageListenerContainer;
|
|
|
|
|
import org.springframework.data.redis.serializer.StringRedisSerializer;
|
|
|
|
|
|
|
|
|
|
import com.genersoft.iot.vmp.utils.redis.FastJsonRedisSerializer;
|
2022-08-10 18:14:33 +08:00
|
|
|
|
|
2020-05-07 21:55:45 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2021-11-05 18:27:41 +08:00
|
|
|
|
* @description:Redis中间件配置类,使用spring-data-redis集成,自动从application.yml中加载redis配置
|
2020-07-16 16:10:49 +08:00
|
|
|
|
* @author: swwheihei
|
2020-05-07 21:55:45 +08:00
|
|
|
|
* @date: 2019年5月30日 上午10:58:25
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@Configuration
|
|
|
|
|
public class RedisConfig extends CachingConfigurerSupport {
|
|
|
|
|
|
2022-01-07 19:37:05 +08:00
|
|
|
|
@Autowired
|
2022-06-14 14:37:34 +08:00
|
|
|
|
private RedisGpsMsgListener redisGPSMsgListener;
|
2022-01-07 19:37:05 +08:00
|
|
|
|
|
2022-04-24 16:33:59 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private RedisAlarmMsgListener redisAlarmMsgListener;
|
|
|
|
|
|
2022-06-14 14:37:34 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private RedisStreamMsgListener redisStreamMsgListener;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private RedisGbPlayMsgListener redisGbPlayMsgListener;
|
|
|
|
|
|
2022-07-12 17:33:17 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private RedisPushStreamStatusMsgListener redisPushStreamStatusMsgListener;
|
|
|
|
|
|
2022-08-18 16:17:23 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private RedisPushStreamListMsgListener redisPushStreamListMsgListener;
|
|
|
|
|
|
2021-07-26 11:40:32 +08:00
|
|
|
|
@Bean
|
2020-05-07 21:55:45 +08:00
|
|
|
|
public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
|
2022-08-10 18:14:33 +08:00
|
|
|
|
RedisTemplate<Object, Object> redisTemplate = new RedisTemplate<>();
|
|
|
|
|
// 使用fastJson序列化
|
|
|
|
|
FastJsonRedisSerializer fastJsonRedisSerializer = new FastJsonRedisSerializer(Object.class);
|
2020-05-07 21:55:45 +08:00
|
|
|
|
// value值的序列化采用fastJsonRedisSerializer
|
2022-08-10 18:14:33 +08:00
|
|
|
|
redisTemplate.setValueSerializer(fastJsonRedisSerializer);
|
|
|
|
|
redisTemplate.setHashValueSerializer(fastJsonRedisSerializer);
|
|
|
|
|
// 全局开启AutoType,不建议使用
|
|
|
|
|
ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
|
|
|
|
|
// 建议使用这种方式,小范围指定白名单,需要序列化的类
|
|
|
|
|
// ParserConfig.getGlobalInstance().addAccept("com.avatar");
|
2020-05-07 21:55:45 +08:00
|
|
|
|
// key的序列化采用StringRedisSerializer
|
2022-08-10 18:14:33 +08:00
|
|
|
|
redisTemplate.setKeySerializer(new StringRedisSerializer());
|
|
|
|
|
redisTemplate.setHashKeySerializer(new StringRedisSerializer());
|
|
|
|
|
redisTemplate.setConnectionFactory(redisConnectionFactory);
|
|
|
|
|
return redisTemplate;
|
2020-05-07 21:55:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-10 18:14:33 +08:00
|
|
|
|
|
2020-05-07 21:55:45 +08:00
|
|
|
|
/**
|
|
|
|
|
* redis消息监听器容器 可以添加多个监听不同话题的redis监听器,只需要把消息监听器和相应的消息订阅处理器绑定,该消息监听器
|
|
|
|
|
* 通过反射技术调用消息订阅处理器的相关方法进行一些业务处理
|
|
|
|
|
*
|
|
|
|
|
* @param connectionFactory
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Bean
|
|
|
|
|
RedisMessageListenerContainer container(RedisConnectionFactory connectionFactory) {
|
|
|
|
|
|
|
|
|
|
RedisMessageListenerContainer container = new RedisMessageListenerContainer();
|
|
|
|
|
container.setConnectionFactory(connectionFactory);
|
2022-04-01 16:45:29 +08:00
|
|
|
|
container.addMessageListener(redisGPSMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_GPS));
|
2022-04-24 16:33:59 +08:00
|
|
|
|
container.addMessageListener(redisAlarmMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_SUBSCRIBE_ALARM_RECEIVE));
|
2022-06-14 14:37:34 +08:00
|
|
|
|
container.addMessageListener(redisStreamMsgListener, new PatternTopic(VideoManagerConstants.WVP_MSG_STREAM_CHANGE_PREFIX + "PUSH"));
|
|
|
|
|
container.addMessageListener(redisGbPlayMsgListener, new PatternTopic(RedisGbPlayMsgListener.WVP_PUSH_STREAM_KEY));
|
2022-07-12 17:33:17 +08:00
|
|
|
|
container.addMessageListener(redisPushStreamStatusMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_PUSH_STREAM_STATUS_CHANGE));
|
2022-08-18 16:17:23 +08:00
|
|
|
|
container.addMessageListener(redisPushStreamListMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_PUSH_STREAM_LIST_CHANGE));
|
2020-05-07 21:55:45 +08:00
|
|
|
|
return container;
|
|
|
|
|
}
|
2020-05-08 21:57:07 +08:00
|
|
|
|
|
2020-05-07 21:55:45 +08:00
|
|
|
|
}
|