RabbitMQ學習--HelloWorld(Java)

amqp-client下載:http://mvnrepository.com/artifact/com.rabbitmq/amqp-client

依賴Jar包:

    <dependency>
         <groupId>com.rabbitmq</groupId>  
         <artifactId>amqp-client</artifactId>  
         <version>3.5.0</version>
     </dependency>

生產者代碼Send.java

package com.gdf.example.rabbitmq.helloworld;

import java.io.IOException;

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

public class Send {
	private final static String QUEUE_NAME = "hello";
	
	public static void main(String[] args) throws Exception  {
		// TODO Auto-generated method stub
		ConnectionFactory factory = new ConnectionFactory();
	    factory.setHost("192.168.1.106");
	    factory.setUsername("admin");
	    factory.setPassword("admin");
	    factory.setPort(AMQP.PROTOCOL.PORT);
	    Connection connection = factory.newConnection();
	    Channel channel = connection.createChannel();

	    channel.queueDeclare(QUEUE_NAME, false, false, false, null);
	    String message = "Hello World!";
	    channel.basicPublish("", QUEUE_NAME, null, message.getBytes("UTF-8"));
	    System.out.println(" [x] Sent '" + message + "'");

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

}

消費者代碼Recv.java

package com.gdf.example.rabbitmq.helloworld;

import java.io.IOException;

import com.rabbitmq.client.AMQP;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;
import com.rabbitmq.client.Consumer;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;

public class Recv {
	private final static String QUEUE_NAME = "hello";
	
	public static void main(String[] args) throws Exception {
		// TODO Auto-generated method stub
		ConnectionFactory factory = new ConnectionFactory();
	    factory.setHost("192.168.1.106");
	    factory.setUsername("admin");
	    factory.setPassword("admin");
	    factory.setPort(AMQP.PROTOCOL.PORT);
	    Connection connection = factory.newConnection();
	    Channel channel = connection.createChannel();
	    
	    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);
	}

}

問題解決:

由於權限問題導致無法訪問vhost/ https://mp.csdn.net/postedit/81517148

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章