关于在使用Redssion发布的订阅遇到大bug

2024-09-04 16:52

本文主要是介绍关于在使用Redssion发布的订阅遇到大bug,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录:

  • 故事开始
  • 解决过程
  • 昙花一现
  • 最终解决

在这里插入图片描述

故事开始

在我开发一个仿微信的一个项目的时候,有一个功能在服务端接受到客户端消息时需要做出反应

比如:有多个客户端向服务端发送消息 ,然后服务端将消息返回给多个客户端,此时可以利用redis的发布订阅
通过将消息发送给同一个主题监听这个主题是否接受到消息从未做出相应操作。

我使用了redis 的客户端ReissionClient中的publish方法进行推送消息,使用addlisten进行消息监听
代码如下:
redission的配置

package com.jjy.easy_chat.entity.config;import org.redisson.Redisson;
import org.redisson.api.RedissonClient;
import org.redisson.config.Config;
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.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;/*** 自定义序列化方式*/
@Configuration
public class RedisConfig {private static final Logger logger = LoggerFactory.getLogger(RedisConfig.class);@Value("${spring.redis.host}")private String redisHost;@Value("${spring.redis.port}")private String redisPort;@Bean("redisTemplate")public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();redisTemplate.setKeySerializer(new StringRedisSerializer());redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());redisTemplate.setHashKeySerializer(new StringRedisSerializer());redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());redisTemplate.setConnectionFactory(redisConnectionFactory);return redisTemplate;}@Bean(name = "redissonClient", destroyMethod = "shutdown")public RedissonClient redissonClient() {try {Config config = new Config();String url="redis://" + redisHost + ":" + redisPort;config.useSingleServer().setAddress(url)// 重试间隔时间(单位:毫秒).setRetryInterval(1500)// 最大重试次数.setRetryAttempts(5)// 连接超时时间(单位:毫秒).setTimeout(3000)// 连接池大小.setConnectionPoolSize(64)// 最小空闲连接数.setConnectionMinimumIdleSize(10);RedissonClient redissonClient = Redisson.create(config);return redissonClient;} catch (Exception e) {logger.error("redission配置出错", e);}return null;}
//    @Bean
//    public RedissonClient redissonClient() throws IOException {
//        Config config = Config.fromYAML(RedisConfig.class.getClassLoader().getResource("redission-config.yml"));
//        return Redisson.create(config);
//    }}

创建了MessageHandler去控制

package com.jjy.easy_chat.websocket;import com.jjy.easy_chat.entity.dto.MessageSendDto;
import com.jjy.easy_chat.utils.JsonUtils;
import lombok.extern.slf4j.Slf4j;
import org.redisson.api.RTopic;
import org.redisson.api.RedissonClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;import javax.annotation.PostConstruct;@Component("messageHandler")
public class MessageHandler {private final String MESSAGE_TOPIC = "message.topic";private final Logger logger = LoggerFactory.getLogger(MessageHandler.class);@Autowiredprivate RedissonClient redissonClient;@Autowiredprivate ChannelContextUtils channelContextUtils;@PostConstructpublic void init() {logger.info("RedissonClient 连接测试: {}", redissonClient.getConfig().toString());}@PostConstructpublic void listenMessage() {try {logger.info("开始监听");RTopic rTopic = redissonClient.getTopic(MESSAGE_TOPIC);int listenerId = rTopic.addListener(MessageSendDto.class, (channel, sendDto) -> {try {logger.info("收到广播消息: {}", JsonUtils.convertObj2Json(sendDto));// channelContextUtils.sendMsg(sendDto);} catch (Exception e) {logger.error("处理广播消息时出错: {}", e.getMessage(), e);}});logger.info("监听器已添加,ID为: {}", listenerId);} catch (Exception e) {logger.error("监听消息时发生异常: {}", e.getMessage(), e);}}public void sendMessage(MessageSendDto sendDto) {RTopic rTopic = redissonClient.getTopic(MESSAGE_TOPIC);logger.info("发送消息", JsonUtils.convertObj2Json(sendDto));rTopic.publish(sendDto);}}

封装了个接口进行请求

    @RequestMapping("/test")private ResponseVO getTest() {MessageSendDto messageSendDto = new MessageSendDto();messageSendDto.setMessageContent("haahah" + System.currentTimeMillis());messageHandler.sendMessage(messageSendDto);//messageRabbitMqHandler.sendMessage(messageSendDto);return getSuccessResponseVO(messageSendDto);}

最后对该接口进行请求代码没有报错

在这里插入图片描述
但是没有监听到消息 如果监听到消息就会输出广播消息加内容

解决过程

我在网上找了许多方法
起初
起初我以为是以为@postConstruct注解没有起到作用,我用了许多方法去解决这个问题 发现并不是这个问题
通过debug 我发现是addlisten 没有起到作用,我到处查资料找到好多方法。

  1. 配置问题:确保Redisson客户端配置正确,包括正确配置了Redis服务器的地址、端口、密码等。如果配置有误,可能导致无法正确连接到Redis服务器,从而影响监听功能。

  2. 网络问题:网络不稳定或连接数过多可能导致程序与Redis服务断开连接。检查网络连接是否稳定,以及是否有连接数限制。

  3. Redis服务状态:检查Redis服务是否正常运行,以及是否有相关的监听功能被禁用。例如,Redis的notify-keyspace-events配置项需要开启以支持键空间通知功能。

  4. 版本兼容性:确保使用的Redisson版本与Redis服务器版本兼容。不兼容的版本可能导致某些功能无法正常工作。

  5. Redisson线程模型:Redisson使用异步模型来处理事件,如果线程模型配置不当,可能会影响消息的接收。

经过仔细查找 ,配置问题也没有问题,我以为是@Async 不对我重新创建了一个线程去执行这个方法发现也不是
网络上我在校园网和热点中进行切换可惜并没有卵用

昙花一现

最后我选择更新版本,我将pom.xml中的redission的版本调到了最高,redis的版本也调到了最高 然后运行发现成功了
在这里插入图片描述

可惜第二天早上我再次运行又不行了,真的气死

最终解决

我无可奈何,想到了消息中间件的rabbitMQ的发布订阅,既然已经到此何不放手一搏,我直接打算换一个技术栈,我创建了rabbitMQ的配置

package com.jjy.easy_chat.entity.config;import org.springframework.amqp.core.ExchangeBuilder;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.amqp.core.*;
@Configuration
public class RabbitMqConfig {private final String EXCAHNG_NAME="message.topic";private final String QUNEUNE_NAME="message";//创建交换机@Bean("messageExchange")public Exchange getExchange() {return ExchangeBuilder.topicExchange(EXCAHNG_NAME).durable(true).build();}@Bean("bootQueue")//创建队列public Queue getQueue() {return new Queue(QUNEUNE_NAME);}//绑定交换机//交换机绑定队列@Beanpublic Binding bindMessageQueue(@Qualifier("messageExchange") Exchange exchange, @Qualifier("bootQueue") Queue queue){return BindingBuilder.bind(queue).to(exchange).with("#.message.#").noargs();}
}

MessageRabbitMqHandler

package com.jjy.easy_chat.websocket;import com.jjy.easy_chat.entity.dto.MessageSendDto;
import com.jjy.easy_chat.utils.JsonUtils;
import org.redisson.api.RTopic;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;@Component("messageRabbitMqHandler")
public class MessageRabbitMqHandler {@Autowiredprivate RabbitTemplate rabbitTemplate;@Autowiredprivate ChannelContextUtils channelContextUtils;@RabbitListener(queues = "message")public void listenMessage(MessageSendDto sendDto){logger.info("收到广播消息: {}", JsonUtils.convertObj2Json(sendDto));channelContextUtils.sendMsg(sendDto);}private final Logger logger = LoggerFactory.getLogger(MessageRabbitMqHandler.class);public void sendMessage(MessageSendDto sendDto) {logger.info("发送消息", JsonUtils.convertObj2Json(sendDto));rabbitTemplate.convertAndSend("message.topic","message",sendDto);}
}

最后我同样去请求这个结果发现成功了,后面也再有没有报错,开心!

如果我的内容对你有帮助,请点赞,评论,收藏。创作不易,大家的支持就是我坚持下去的动力
在这里插入图片描述

这篇关于关于在使用Redssion发布的订阅遇到大bug的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1136489

相关文章

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

使用SQL语言查询多个Excel表格的操作方法

《使用SQL语言查询多个Excel表格的操作方法》本文介绍了如何使用SQL语言查询多个Excel表格,通过将所有Excel表格放入一个.xlsx文件中,并使用pandas和pandasql库进行读取和... 目录如何用SQL语言查询多个Excel表格如何使用sql查询excel内容1. 简介2. 实现思路3

java脚本使用不同版本jdk的说明介绍

《java脚本使用不同版本jdk的说明介绍》本文介绍了在Java中执行JavaScript脚本的几种方式,包括使用ScriptEngine、Nashorn和GraalVM,ScriptEngine适用... 目录Java脚本使用不同版本jdk的说明1.使用ScriptEngine执行javascript2.

c# checked和unchecked关键字的使用

《c#checked和unchecked关键字的使用》C#中的checked关键字用于启用整数运算的溢出检查,可以捕获并抛出System.OverflowException异常,而unchecked... 目录在 C# 中,checked 关键字用于启用整数运算的溢出检查。默认情况下,C# 的整数运算不会自

在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码

《在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码》在MyBatis的XML映射文件中,trim元素用于动态添加SQL语句的一部分,处理前缀、后缀及多余的逗号或连接符,示... 在MyBATis的XML映射文件中,<trim>元素用于动态地添加SQL语句的一部分,例如SET或W