32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
package com.baeldung.consumer;
|
|
|
|
import com.rabbitmq.client.*;
|
|
|
|
import java.io.IOException;
|
|
import java.util.concurrent.TimeoutException;
|
|
|
|
public class Receiver {
|
|
|
|
private static final String QUEUE_NAME = "products_queue";
|
|
|
|
public static void main (String[] args) throws IOException, TimeoutException {
|
|
ConnectionFactory factory = new ConnectionFactory();
|
|
factory.setHost("localhost");
|
|
Connection connection = factory.newConnection();
|
|
Channel channel = connection.createChannel();
|
|
|
|
channel.queueDeclare(QUEUE_NAME, false, false, false, null);
|
|
|
|
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(QUEUE_NAME, true, consumer);
|
|
}
|
|
}
|