rabbitmq 死信队列

import com.rabbitmq.client.AMQP;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

public class Producer {
   public static void main(String[] args) throws Exception {
      ConnectionFactory connectionFactory = new ConnectionFactory();
      connectionFactory.setHost("192.168.6.1");
      connectionFactory.setPort(5672);
      connectionFactory.setVirtualHost("/");
      connectionFactory.setUsername("longlong");
      connectionFactory.setPassword("");

      Connection connection = connectionFactory.newConnection();
      Channel channel = connection.createChannel();
      
      String exchange = "test_dlx_exchange";
      String routingKey = "dlx.save";
      
      String msg = "Hello RabbitMQ DLX Message";
      AMQP.BasicProperties properties = new AMQP.BasicProperties.Builder()
            .deliveryMode(2)
            .contentEncoding("UTF-8")
            .expiration("10000")
            .build();
      channel.basicPublish(exchange, routingKey, true, properties, msg.getBytes());
   }
}
import java.io.IOException;

import com.rabbitmq.client.AMQP;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;

public class MyConsumer extends DefaultConsumer {
   public MyConsumer(Channel channel) {
      super(channel);
   }

   @Override
   public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
      System.err.println("-----------consume message----------");
      System.err.println("consumerTag: " + consumerTag);
      System.err.println("envelope: " + envelope);
      System.err.println("properties: " + properties);
      System.err.println("body: " + new String(body));
   }
}
import java.util.HashMap;
import java.util.Map;

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

public class Consumer {
   public static void main(String[] args) throws Exception {
      ConnectionFactory connectionFactory = new ConnectionFactory();
      connectionFactory.setHost("192.168.6.1");
      connectionFactory.setPort(5672);
      connectionFactory.setVirtualHost("/");
      connectionFactory.setUsername("longlong");
      connectionFactory.setPassword("");

      Connection connection = connectionFactory.newConnection();
      Channel channel = connection.createChannel();
      
      // 这就是一个普通的交换机 和 队列 以及路由
      String exchangeName = "test_dlx_exchange";
      String routingKey = "dlx.#";
      String queueName = "test_dlx_queue";
      
      channel.exchangeDeclare(exchangeName, "topic", true, false, null);
      
      Map<String, Object> agruments = new HashMap<>();
      agruments.put("x-dead-letter-exchange", "dlx.exchange");
      //这个agruments属性,要设置到声明队列上
      channel.queueDeclare(queueName, true, false, false, agruments);
      channel.queueBind(queueName, exchangeName, routingKey);
      
      //要进行死信队列的声明:
      channel.exchangeDeclare("dlx.exchange", "topic", true, false, null);
      channel.queueDeclare("dlx.queue", true, false, false, null);
      channel.queueBind("dlx.queue", "dlx.exchange", "#");
      
      channel.basicConsume(queueName, true, new MyConsumer(channel));
   }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值