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

相关文章

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

go中空接口的具体使用

《go中空接口的具体使用》空接口是一种特殊的接口类型,它不包含任何方法,本文主要介绍了go中空接口的具体使用,具有一定的参考价值,感兴趣的可以了解一下... 目录接口-空接口1. 什么是空接口?2. 如何使用空接口?第一,第二,第三,3. 空接口几个要注意的坑坑1:坑2:坑3:接口-空接口1. 什么是空接

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

java中使用POI生成Excel并导出过程

《java中使用POI生成Excel并导出过程》:本文主要介绍java中使用POI生成Excel并导出过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录需求说明及实现方式需求完成通用代码版本1版本2结果展示type参数为atype参数为b总结注:本文章中代码均为

Spring Boot3虚拟线程的使用步骤详解

《SpringBoot3虚拟线程的使用步骤详解》虚拟线程是Java19中引入的一个新特性,旨在通过简化线程管理来提升应用程序的并发性能,:本文主要介绍SpringBoot3虚拟线程的使用步骤,... 目录问题根源分析解决方案验证验证实验实验1:未启用keep-alive实验2:启用keep-alive扩展建

新特性抢先看! Ubuntu 25.04 Beta 发布:Linux 6.14 内核

《新特性抢先看!Ubuntu25.04Beta发布:Linux6.14内核》Canonical公司近日发布了Ubuntu25.04Beta版,这一版本被赋予了一个活泼的代号——“Plu... Canonical 昨日(3 月 27 日)放出了 Beta 版 Ubuntu 25.04 系统镜像,代号“Pluc

使用Java实现通用树形结构构建工具类

《使用Java实现通用树形结构构建工具类》这篇文章主要为大家详细介绍了如何使用Java实现通用树形结构构建工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录完整代码一、设计思想与核心功能二、核心实现原理1. 数据结构准备阶段2. 循环依赖检测算法3. 树形结构构建4. 搜索子

GORM中Model和Table的区别及使用

《GORM中Model和Table的区别及使用》Model和Table是两种与数据库表交互的核心方法,但它们的用途和行为存在著差异,本文主要介绍了GORM中Model和Table的区别及使用,具有一... 目录1. Model 的作用与特点1.1 核心用途1.2 行为特点1.3 示例China编程代码2. Tab