手动确认rabbitmq

配置文件

java 复制代码
package com.ynart.config;


import org.springframework.amqp.core.*;
import org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory;
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class RabbitmqConfig {

    private static final String PRODUCT_EXCHANGE = "productExchange";

    @Bean
    public TopicExchange productExchange() {
        return new TopicExchange(PRODUCT_EXCHANGE);
    }

    @Bean
    public Queue sportsQueue() {
        return new Queue("sportsQueue");
    }

    @Bean
    public Binding sportsBinding(Queue sportsQueue, TopicExchange productExchange) {
        return BindingBuilder.bind(sportsQueue).to(productExchange).with("sports.*");
    }

    @Bean
    public Queue electronicsQueue() {
        return new Queue("electronicsQueue");
    }

    @Bean
    public Binding electronicsBinding(Queue electronicsQueue, TopicExchange productExchange) {
        return BindingBuilder.bind(electronicsQueue).to(productExchange).with("electronics.*");
    }

    /**
     * 创建消息监听容器
     * @param connectionFactory
     * @return
     */
    @Bean
    public SimpleRabbitListenerContainerFactory rabbitListenerContainerFactory(ConnectionFactory connectionFactory) {
        SimpleRabbitListenerContainerFactory factory = new SimpleRabbitListenerContainerFactory();
        factory.setConnectionFactory(connectionFactory);
        factory.setAcknowledgeMode(AcknowledgeMode.MANUAL); // 设置消息确认模式为手动确认
        return factory;
    }
}

使用

java 复制代码
package com.ynart.rabbitmq;

import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.rabbitmq.client.Channel;
import com.ynart.Dto.ArtDataEntity;
import com.ynart.exedata.domain.ArtData;
import com.ynart.exedata.service.IArtDataService;
import com.ynart.utils.AesUtils;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.messaging.handler.annotation.Header;
import org.springframework.stereotype.Component;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.List;

@Component
public class RabbitmqService {

    private final RabbitTemplate rabbitTemplate;
    @Autowired
    private IArtDataService artDataService;
    @Autowired
    private AesUtils aesUtils;

    @Autowired
    public RabbitmqService(RabbitTemplate rabbitTemplate) {
        this.rabbitTemplate = rabbitTemplate;
    }

    public void sendSportsOrder(String message) {
        rabbitTemplate.convertAndSend("productExchange", "sports.new", message);
    }

    public void sendElectronicsOrder(String message) {
        rabbitTemplate.convertAndSend("productExchange", "electronics.new", message);
    }

    @RabbitListener(queues = "sportsQueue")
    public void receiveSportsOrder(String message, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) throws IOException {
        try {

            //TODO 数据梳理入库
            message = aesUtils.decryptAES(message);
            ObjectMapper objectMapper = new ObjectMapper();
            List<ArtDataEntity> list = objectMapper.readValue(message, new TypeReference<List<ArtDataEntity>>() {
            });
            String pattern = "yyyy-MM-dd HH:mm:ss";

            SimpleDateFormat dateFormat = new SimpleDateFormat(pattern);
            //mq数据入库
            for (ArtDataEntity artDataEntity : list) {
                ArtData artData = new ArtData();
                artData.setId(null);
                artData.setJsonContent(artDataEntity.getJson_content());
                artData.setUrl(artDataEntity.getUrl());
                artData.setDataVersion(artDataEntity.getData_version());
                artData.setSign(artDataEntity.getSign());
                artData.setStatus(artDataEntity.getStatus().toString());
                artData.setCreatedBy(artDataEntity.getCreated_by());
                artData.setCreatedTime(dateFormat.parse(artDataEntity.getCreated_time()));
                artData.setUpdatedBy(artDataEntity.getUpdated_by());
                artData.setUpdatedTime(dateFormat.parse(artDataEntity.getUpdated_time()));
                artDataService.insertArtData(artData);

            }
            // 手动确认消息
            channel.basicAck(deliveryTag, false);

            //TODO 逻辑修改,不进行回调
//            sendElectronicsOrder(list.get(0).getCreated_by() + ":-art-:" + stringBuilder.toString());

        } catch (Exception e) {
            // 消费消息失败,不进行确认,消息重新回到队列中进行重试
            System.out.println("Failed to process sports order: " + message);
            //TODO 逻辑修改,不进行回调
            channel.basicNack(deliveryTag, false, true);
        }
    }

//    @RabbitListener(queues = "electronicsQueue")
//    public void receiveElectronicsOrder(String message, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) throws IOException {
//        try {
//            // 消费消息的业务逻辑
//            System.out.println("Received electronics order: " + message);
//
//            // 手动确认消息
//            channel.basicAck(deliveryTag, false);
//        } catch (Exception e) {
//            // 消费消息失败,不进行确认,消息重新回到队列中进行重试
//            System.out.println("Failed to process electronics order: " + message);
//            channel.basicNack(deliveryTag, false, true);
//        }
//    }
}
相关推荐
独自破碎E14 分钟前
Spring Boot 3.x和2.x版本相比有哪些区别与改进?
java·spring boot·后端
幽络源小助理29 分钟前
SpringBoot+Vue美食网站系统源码 | Java餐饮项目免费下载 – 幽络源
java·vue.js·spring boot
Coder_Boy_37 分钟前
基于SpringAI企业级智能教学考试平台考试模块全业务闭环方案
java·人工智能·spring boot·aiops
Coder_Boy_2 小时前
基于SpringAI的智能AIOps项目:部署相关容器化部署管理技术
人工智能·spring boot·k8s·运维开发
小蒜学长2 小时前
python餐厅点餐系统(代码+数据库+LW)
数据库·spring boot·后端·python
CodeAmaz2 小时前
Spring Boot 项目使用 Elasticsearch 详细指南
spring boot·后端·elasticsearch
彭于晏Yan2 小时前
Springboot集成Hutool导出CSV
java·spring boot·后端
万小猿2 小时前
互联网大厂Java求职面试模拟实战:谢飞机的三轮提问与详细解答
java·大数据·spring boot·微服务·面试·技术解析·互联网大厂
Coder_Boy_2 小时前
基于SpringAI企业级智能教学考试平台试卷管理模块全业务闭环方案
java·大数据·人工智能·spring boot·springboot
wanghowie2 小时前
02.01 Spring Boot|自动配置机制深度解析
android·spring boot·后端