当前位置: 首页 > article >正文

【RabbitMQ】10-抽取MQ工具

1. Nacos共享配置

shared-mq.yaml

spring:
  rabbitmq:
    host: ${hm.mq.host:*.*.*.*} # 你的虚拟机IP
    port: ${hm.mq.port:5672} # 端口
    virtual-host: ${hm.mq.vhost:/hmall} # 虚拟主机
    username: ${hm.mq.un:hmall} # 用户名
    password: ${hm.mq.pw:***} # 密码

2. Common包下引入依赖

<!--AMQP依赖-->
<dependency>
    <groupId>org.springframework.amqp</groupId>
    <artifactId>spring-amqp</artifactId>
    <scope>provided</scope>
</dependency>
<!--Spring整合Rabbit依赖-->
<dependency>
    <groupId>org.springframework.amqp</groupId>
    <artifactId>spring-rabbit</artifactId>
    <scope>provided</scope>
</dependency>
<!--json处理-->
<dependency>
    <groupId>com.fasterxml.jackson.dataformat</groupId>
    <artifactId>jackson-dataformat-xml</artifactId>
    <scope>provided</scope>
</dependency>

3. RabbitMqHelper工具类

@Slf4j
@AllArgsConstructor
public class RabbitMqHelper {

    private final RabbitTemplate rabbitTemplate;

    public void sendMessage(String exchange, String routingKey, Object msg) {
        log.debug("即将发送消息:exchange:{}, routingKey:{}, msg{}", exchange, routingKey, msg);
        rabbitTemplate.convertAndSend(exchange, routingKey, msg);
        log.info("发送消息成功");
    }

    public void sendDelayMessage(String exchange, String routingKey, Object msg, int delay) {
        log.debug("准备发送延迟消息:exchange:{}, routingKey:{}, msg:{}, delay:{}", exchange, routingKey, msg, delay);
        rabbitTemplate.convertAndSend(exchange, routingKey, msg, message -> {
            message.getMessageProperties().setDelay(delay);
            return message;
        });
        log.info("发送延迟消息成功");
    }

    public void sendMessageWithConfirm(String exchange, String routingKey, Object msg, int maxRetries) {
        log.debug("准备发送消息:exchange:{}, routingKey:{}, msg:{}, maxRetries:{}", exchange, routingKey, msg, maxRetries);
        CorrelationData cd = new CorrelationData(UUID.randomUUID().toString());
        cd.getFuture().addCallback(new ListenableFutureCallback<CorrelationData.Confirm>() {
            int retryCount;
            @Override
            public void onFailure(Throwable ex) {
                log.error("处理ack回收失败", ex);
            }

            @Override
            public void onSuccess(CorrelationData.Confirm result) {
                if (result != null && !result.isAck()) {
                    log.debug("消息发送失败,收到nack,已重试:{}", retryCount);
                    if (retryCount >= maxRetries) {
                        log.error("消息发送重试次数耗尽,发送失败");
                        return;
                    }
                }
            }
        });
        rabbitTemplate.convertAndSend(exchange, routingKey, msg, cd);
        log.info("发送确认消息成功");
    }
}

3. 自动装配

@Configuration
@ConditionalOnClass(value = {MessageConverter.class, RabbitTemplate.class})
public class MqConfig {
    @Bean
    @ConditionalOnBean(ObjectMapper.class)
    public MessageConverter messageConverter(ObjectMapper mapper) {
        Jackson2JsonMessageConverter jackson2JsonMessageConverter = new Jackson2JsonMessageConverter(mapper);
        jackson2JsonMessageConverter.setCreateMessageIds(true);
        return jackson2JsonMessageConverter;
    }

    @Bean
    public RabbitMqHelper rabbitMqHelper(RabbitTemplate rabbitTemplate) {
        return new RabbitMqHelper(rabbitTemplate);
    }
}

4. 配置扫描

在spring.factories设置

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
  com.hmall.common.config.MyBatisConfig,\
  com.hmall.common.config.MvcConfig,\
  com.hmall.common.config.MqConfig,\
  com.hmall.common.config.JsonConfig

http://www.kler.cn/a/397746.html

相关文章:

  • g++与gdb简单学习
  • DAY120java审计第三方组件依赖库挖掘FastjsonShiroLog4jH2DB
  • Vuex vs Pinia:新一代Vue状态管理方案对比
  • 【PIP】完整指南:Python `pip install` 和 `pip uninstall` 命令详解与清理技巧
  • 电子电气架构 --- 传统刷写流程怎么用在SOC上就不适用呢?
  • w~视觉~合集23
  • 高性能linux服务器运维实战 shell应用案例
  • C# yolo10使用onnx推理
  • SpringBoot整合Email 邮件发送详解
  • Java基础——多线程
  • SOP搭建:企业标准化操作程序构建与实施指南
  • 用com.github.shyiko.mysql.binlog 写一个监听mysql的binlog 的程序
  • 【代码随想录day32】【C++复健】509. 斐波那契数;70. 爬楼梯;746. 使用最小花费爬楼梯
  • Java-01 深入浅出 MyBatis - MyBatis 概念 ORM映射关系 常见ORM 详细发展历史
  • [刷题]入门1.矩阵转置
  • 单片机_day7_中断
  • 【Webpack实用指南】如何拆分CSS资源(2)
  • 说说软件工程中的“协程”
  • FFMPEG录像推流时遇到的问题
  • 【ArcGIS微课1000例】0128:ArcGIS制作规划图卫星影像地图虚化效果
  • 2024山西省网络建设运维第十八届职业院校技能大赛解析答案(2. DNS 服务)
  • C++(Qt)软件调试---无法校验pdb时间戳(23)
  • Ubuntu从入门到精通(一)系统安装
  • 使用 Ant Design Vue 自定渲染函数customRender实现单元格合并功能rowSpan
  • css-50 Projects in 50 Days(3)
  • 屏幕拾色器