RabbitMQ publish/subscribe

make an announcement:

public class EmitLog {

    private static final String EXCHANGE_NAME = "logs";

    public static void main(String[] argv)
                  throws java.io.IOException {

        ConnectionFactory factory = new ConnectionFactory();
        factory.setHost("localhost");
        Connection connection = factory.newConnection();
        Channel channel = connection.createChannel();

        channel.exchangeDeclare(EXCHANGE_NAME, "fanout");

        String message = getMessage(argv);

        channel.basicPublish(EXCHANGE_NAME, "", null, message.getBytes());
        System.out.println(" [x] Sent '" + message + "'");

        channel.close();
        connection.close();
    }
    //...
}

 

Subscribe to news:

public class ReceiveLogs {
  private static final String EXCHANGE_NAME = "logs";

  public static void main(String[] argv) throws Exception {
    ConnectionFactory factory = new ConnectionFactory();
    factory.setHost("localhost");
    Connection connection = factory.newConnection();
    Channel channel = connection.createChannel();

    channel.exchangeDeclare(EXCHANGE_NAME, "fanout");
    String queueName = channel.queueDeclare().getQueue();
    channel.queueBind(queueName, EXCHANGE_NAME, "");

    System.out.println(" [*] Waiting for messages. To exit press CTRL+C");

    Consumer consumer = new DefaultConsumer(channel) {
      @Override
      public void handleDelivery(String consumerTag, Envelope envelope,
                                 AMQP.BasicProperties properties, byte[] body) throws IOException {
        String message = new String(body, "UTF-8");
        System.out.println(" [x] Received '" + message + "'");
      }
    };
    channel.basicConsume(queueName, true, consumer);
  }
}

 Subscriptions can be divided into durable subscriptions and non-durable subscriptions. For consumers of durable subscriptions, when the queue is declared, it must be declared as a durable queue

channel.queueDeclare(queueName, true, false, false, null);

 Durable subscription queues can continue to hold the queue data when the rabbitmq server is restarted

Non-durable subscription queues will lose all unconsumed queue data when the server restarts

 

Note: Because of the publish/subscribe mode , there is no need to specify the routingKey when binding the exchange

channel.queueBind(queueName, Constants.EXCHANGE_FANT, "");

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326988036&siteId=291194637