栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

java SpringBoot+rabbitmq

java SpringBoot+rabbitmq

yml配置文件

```java
  rabbitmq:
    host: 127.0.0.1
    password: 123
    port: 5672
    username: test_user
    virtual-host: testhost
    listener:
      simple:
        auto-startup: true

消息的消费

import com.rabbitmq.client.Channel;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.QueueBinding;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

import java.io.IOException;



@Component
public class MQConsumserService {


    @RabbitListener(bindings = {@QueueBinding(value = @Queue(value = "testQueue", durable = "true"),
            exchange = @Exchange(value = "replyMessageExchange", durable = "true", type = ExchangeTypes.TOPIC), key = "test"),
    })
    public void process(Message message, Channel channel) {
        try {
            long deliveryTag = message.getMessageProperties().getDeliveryTag();
            System.out.println("开始消费。。。" + deliveryTag);
            System.out.println("Message content : " + message);
            channel.basicAck(deliveryTag,false);
            System.out.println("消息已确认");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/433744.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号