wvp-GB28181-pro/src/main/java/com/genersoft/iot/vmp/conf/RedisConfig.java

91 lines
4.1 KiB
Java
Raw Normal View History

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;
import com.genersoft.iot.vmp.common.VideoManagerConstants;
import com.genersoft.iot.vmp.service.impl.*;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
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;
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
/**
* @description:Redis使spring-data-redisapplication.ymlredis
2020-07-16 16:10:49 +08:00
* @author: swwheihei
2020-05-07 21:55:45 +08:00
* @date: 2019530 10:58:25
*
*/
@Configuration
public class RedisConfig extends CachingConfigurerSupport {
@Autowired
private RedisGpsMsgListener redisGPSMsgListener;
@Autowired
private RedisAlarmMsgListener redisAlarmMsgListener;
@Autowired
private RedisStreamMsgListener redisStreamMsgListener;
@Autowired
private RedisGbPlayMsgListener redisGbPlayMsgListener;
@Autowired
private RedisPushStreamStatusMsgListener redisPushStreamStatusMsgListener;
2022-08-18 16:17:23 +08:00
@Autowired
private RedisPushStreamListMsgListener redisPushStreamListMsgListener;
@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);
container.addMessageListener(redisGPSMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_GPS));
container.addMessageListener(redisAlarmMsgListener, new PatternTopic(VideoManagerConstants.VM_MSG_SUBSCRIBE_ALARM_RECEIVE));
container.addMessageListener(redisStreamMsgListener, new PatternTopic(VideoManagerConstants.WVP_MSG_STREAM_CHANGE_PREFIX + "PUSH"));
container.addMessageListener(redisGbPlayMsgListener, new PatternTopic(RedisGbPlayMsgListener.WVP_PUSH_STREAM_KEY));
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-07 21:55:45 +08:00
}