关于在使用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

相关文章

定价129元!支持双频 Wi-Fi 5的华为AX1路由器发布

《定价129元!支持双频Wi-Fi5的华为AX1路由器发布》华为上周推出了其最新的入门级Wi-Fi5路由器——华为路由AX1,建议零售价129元,这款路由器配置如何?详细请看下文介... 华为 Wi-Fi 5 路由 AX1 已正式开售,新品支持双频 1200 兆、配有四个千兆网口、提供可视化智能诊断功能,建

使用 sql-research-assistant进行 SQL 数据库研究的实战指南(代码实现演示)

《使用sql-research-assistant进行SQL数据库研究的实战指南(代码实现演示)》本文介绍了sql-research-assistant工具,该工具基于LangChain框架,集... 目录技术背景介绍核心原理解析代码实现演示安装和配置项目集成LangSmith 配置(可选)启动服务应用场景

使用Python快速实现链接转word文档

《使用Python快速实现链接转word文档》这篇文章主要为大家详细介绍了如何使用Python快速实现链接转word文档功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 演示代码展示from newspaper import Articlefrom docx import

oracle DBMS_SQL.PARSE的使用方法和示例

《oracleDBMS_SQL.PARSE的使用方法和示例》DBMS_SQL是Oracle数据库中的一个强大包,用于动态构建和执行SQL语句,DBMS_SQL.PARSE过程解析SQL语句或PL/S... 目录语法示例注意事项DBMS_SQL 是 oracle 数据库中的一个强大包,它允许动态地构建和执行

SpringBoot中使用 ThreadLocal 进行多线程上下文管理及注意事项小结

《SpringBoot中使用ThreadLocal进行多线程上下文管理及注意事项小结》本文详细介绍了ThreadLocal的原理、使用场景和示例代码,并在SpringBoot中使用ThreadLo... 目录前言技术积累1.什么是 ThreadLocal2. ThreadLocal 的原理2.1 线程隔离2

在MySQL执行UPDATE语句时遇到的错误1175的解决方案

《在MySQL执行UPDATE语句时遇到的错误1175的解决方案》MySQL安全更新模式(SafeUpdateMode)限制了UPDATE和DELETE操作,要求使用WHERE子句时必须基于主键或索引... mysql 中遇到的 Error Code: 1175 是由于启用了 安全更新模式(Safe Upd

Python itertools中accumulate函数用法及使用运用详细讲解

《Pythonitertools中accumulate函数用法及使用运用详细讲解》:本文主要介绍Python的itertools库中的accumulate函数,该函数可以计算累积和或通过指定函数... 目录1.1前言:1.2定义:1.3衍生用法:1.3Leetcode的实际运用:总结 1.1前言:本文将详

浅析如何使用Swagger生成带权限控制的API文档

《浅析如何使用Swagger生成带权限控制的API文档》当涉及到权限控制时,如何生成既安全又详细的API文档就成了一个关键问题,所以这篇文章小编就来和大家好好聊聊如何用Swagger来生成带有... 目录准备工作配置 Swagger权限控制给 API 加上权限注解查看文档注意事项在咱们的开发工作里,API

解决JavaWeb-file.isDirectory()遇到的坑问题

《解决JavaWeb-file.isDirectory()遇到的坑问题》JavaWeb开发中,使用`file.isDirectory()`判断路径是否为文件夹时,需要特别注意:该方法只能判断已存在的文... 目录Jahttp://www.chinasem.cnvaWeb-file.isDirectory()遇

Java数字转换工具类NumberUtil的使用

《Java数字转换工具类NumberUtil的使用》NumberUtil是一个功能强大的Java工具类,用于处理数字的各种操作,包括数值运算、格式化、随机数生成和数值判断,下面就来介绍一下Number... 目录一、NumberUtil类概述二、主要功能介绍1. 数值运算2. 格式化3. 数值判断4. 随机