linux 安装rabbitMQ以及入门案例

安装依赖环境

yum install build-essential openssl openssl-devel unixODBC unixODBC-devel make gcc gcc-c++ kernel-devel m4 ncurses-devel tk tc xz

安装 Erlang

链接:https://pan.baidu.com/s/1eBHi1MPnfpjDqtTboxKX4g 
提取码:r3qg 
上传

erlang-18.3-1.el7.centos.x86_64.rpm

socat-1.7.3.2-5.el7.lux.x86_64.rpm

rabbitmq-server-3.6.5-1.noarch.rpm

# 安装
rpm -ivh erlang-18.3-1.el7.centos.x86_64.rpm

 安装RabbitMQ

# 安装
rpm -ivh socat-1.7.3.2-5.el7.lux.x86_64.rpm

# 安装
rpm -ivh rabbitmq-server-3.6.5-1.noarch.rpm

 开启管理界面及配置

# 开启管理界面
rabbitmq-plugins enable rabbitmq_management

# 修改默认配置信息
vim /usr/lib/rabbitmq/lib/rabbitmq_server-3.6.5/ebin/rabbit.app 

开启用户

 使用命令

service rabbitmq-server start # 启动服务
service rabbitmq-server stop # 停止服务
service rabbitmq-server restart # 重启服务

 配置文件

cd /usr/share/doc/rabbitmq-server-3.6.5/

cp rabbitmq.config.example /etc/rabbitmq/rabbitmq.config

访问rabbitmq网页

http://localhost:15672/

简单模式 

pom引入

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

producer

package com.hikktn.simple;

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

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Producer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:08
 * @Version 1.0
 */
public class Producer {

	private static final String QUEUE_NAME = "simple_queue";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			// 声明简单队列
			/**
			 * 参数1:队列名称
			 * 参数2:是否定义持久化队列
			 * 参数3:是否独占本次连接
			 * 参数4:是否在不使用的时候自动删除队列
			 * 参数5:队列其它参数
			 */
			channel.queueDeclare(QUEUE_NAME, true, false, false, null);
			String message = "你好,rabbitmq!";
			/**
			 * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
			 * 参数2:路由key,简单模式可以传递队列名称
			 * 参数3:消息其它属性
			 * 参数4:消息内容
			 */
			channel.basicPublish("", QUEUE_NAME, null, message.getBytes());
			System.out.println("提供者发送消息:" + message);
		} catch (IOException e) {
			e.printStackTrace();
		} catch (TimeoutException e) {
			e.printStackTrace();
		} finally {
			// 关闭资源
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			} catch (TimeoutException e) {
				e.printStackTrace();
			}
			try {
				connection.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}
}

consumer

package com.hikktn.consumer;

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class Consumer {

	private static final String QUEUE_NAME = "simple_queue";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			//创建消费者;并设置消息处理
			DefaultConsumer consumer = new DefaultConsumer(channel){
				@Override
				/**
				 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
				 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
				 * properties 属性信息
				 * body 消息
				 */
				public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
					//路由key
					System.out.println("路由key为:" + envelope.getRoutingKey());
					//交换机
					System.out.println("交换机为:" + envelope.getExchange());
					//消息id
					System.out.println("消息id为:" + envelope.getDeliveryTag());
					//收到的消息
					System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				}
			};
			//监听消息
			/**
			 * 参数1:队列名称
			 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
			 * 参数3:消息接收到后回调
			 */
			channel.basicConsume(QUEUE_NAME, true, consumer);
		}catch (IOException e){
			e.printStackTrace();
		} catch (TimeoutException e) {
			e.printStackTrace();
		}
	}
}

测试

 工作模式

生产者 

package com.hikktn.simple;

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

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Producer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:08
 * @Version 1.0
 */
public class ProducerWork {

	private static final String QUEUE_NAME = "work_queue";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			// 声明简单队列
			/**
			 * 参数1:队列名称
			 * 参数2:是否定义持久化队列
			 * 参数3:是否独占本次连接
			 * 参数4:是否在不使用的时候自动删除队列
			 * 参数5:队列其它参数
			 */
			channel.queueDeclare(QUEUE_NAME, true, false, false, null);
			for (int i = 0; i <= 10; i++) {
				String message = "你好,rabbitmq!"+i;
				/**
				 * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
				 * 参数2:路由key,简单模式可以传递队列名称
				 * 参数3:消息其它属性
				 * 参数4:消息内容
				 */
				channel.basicPublish("", QUEUE_NAME, null, message.getBytes());
				System.out.println("提供者发送消息:" + message + i);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} catch (TimeoutException e) {
			e.printStackTrace();
		} finally {
			// 关闭资源
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			} catch (TimeoutException e) {
				e.printStackTrace();
			}
			try {
				connection.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}
}
package com.hikktn.util;

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

/**
 * @ClassName ConnectionUtil
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/7 1:07
 * @Version 1.0
 */
public class ConnectionUtil {

	public static Connection  getConnection() throws Exception {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");
		// 通过工厂获取连接
		Connection connection = factory.newConnection();
		return connection;
	}

}

消费者1 

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerWork1 {

	private static final String QUEUE_NAME = "work_queue";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		//一次只能接收并处理一个消息
		channel.basicQos(1);
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// 测试ack
				// int i = 1 / 0;
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME, false, consumer);
	}
}

消费者2 

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.oracle.jrockit.jfr.Producer;
import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerWork2 {

	private static final String QUEUE_NAME = "work_queue";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		Channel channel = connection.createChannel();
		// 创建队列
		channel.queueDeclare(QUEUE_NAME, true, false, false, null);
		//一次只能接收并处理一个消息
		channel.basicQos(1);
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				// 自动ack(接收消息)
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME, false, consumer);
	}
}

订阅模式

生产者

package com.hikktn.simple;

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Producer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:08
 * @Version 1.0
 */
public class ProducerPublish {

	//交换机名称
	private static final String FANOUT_EXCHAGE = "fanout_exchange";
	private static final String QUEUE_NAME_1 = "publish_fanout_queue_1";
	private static final String QUEUE_NAME_2 = "publish_fanout_queue_2";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			/**
			 * 声明交换机
			 * 参数1:交换机名称
			 * 参数2:交换机类型,fanout、topic、direct、headers
			 */
			channel.exchangeDeclare(FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
			// 声明(创建)队列
			/**
			 * 参数1:队列名称
			 * 参数2:是否定义持久化队列
			 * 参数3:是否独占本次连接
			 * 参数4:是否在不使用的时候自动删除队列
			 * 参数5:队列其它参数
			 */
			// 提供方可以不需要创建队列和交换机,由消费者处理
			// channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);
			// channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);
			//队列绑定交换机
			// channel.queueBind(QUEUE_NAME_1, FANOUT_EXCHAGE, "");
			// channel.queueBind(QUEUE_NAME_2, FANOUT_EXCHAGE, "");
			for (int i = 2; i <= 5; i++) {
				// 发送信息
				String message = "567你好;小兔子!发布订阅模式--" + i;
				// 声明事务
				channel.txSelect();
				/**
				 * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
				 * 参数2:路由key,简单模式可以传递队列名称
				 * 参数3:消息其它属性
				 * 参数4:消息内容
				 */
				channel.basicPublish(FANOUT_EXCHAGE, "", MessageProperties.PERSISTENT_TEXT_PLAIN, message.getBytes());
				// 提交事务
				channel.txCommit();
				System.out.println("已发送消息:" + message);
			}
		} catch (Exception e1) {
			try {
				// 回滚
				channel.txRollback();
			} catch (IOException e) {
				e.printStackTrace();
			}
		} finally {
			// 关闭资源
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			} catch (TimeoutException e) {
				e.printStackTrace();
			}
			try {
				connection.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}
}

消费者1

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.oracle.jrockit.jfr.Producer;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerPublish1 {

	private static final String FANOUT_EXCHAGE = "fanout_exchange";
	private static final String QUEUE_NAME_1 = "publish_fanout_queue_1";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		//声明交换机
		channel.exchangeDeclare(FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_1, FANOUT_EXCHAGE, "");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_1, false, consumer);
	}
}

消费者2

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerPublish2 {

	private static final String FANOUT_EXCHAGE = "fanout_exchange";
	private static final String QUEUE_NAME_2 = "publish_fanout_queue_2";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		// 声明交换机
		channel.exchangeDeclare(FANOUT_EXCHAGE, BuiltinExchangeType.FANOUT);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_2, FANOUT_EXCHAGE, "");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), true);
			}
		};
		//监听消息
		/**
		 * queue :队列名称
		 * autoAck :是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 *          设置true后,回调方法不会调用,需要重新启动后,回调方法才会调用
		 * callback:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_2, false, consumer);
	}
}

路由模式

生产者

package com.hikktn.simple;

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Producer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:08
 * @Version 1.0
 */
public class ProducerRouting {

	//交换机名称
	private static final String DIRECT_EXCHAGE = "direct_exchange";
	private static final String QUEUE_NAME_1 = "routing_direct_queue_1";
	private static final String QUEUE_NAME_2 = "routing_direct_queue_2";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			/**
			 * 声明交换机
			 * 参数1:交换机名称
			 * 参数2:交换机类型,fanout、topic、direct、headers
			 */
			channel.exchangeDeclare(DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
			// 声明(创建)队列
			/**
			 * 参数1:队列名称
			 * 参数2:是否定义持久化队列
			 * 参数3:是否独占本次连接
			 * 参数4:是否在不使用的时候自动删除队列
			 * 参数5:队列其它参数
			 */
			// 提供方可以不需要创建队列和交换机,由消费者处理
			// channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);
			// channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);
			//队列绑定交换机
			// channel.queueBind(QUEUE_NAME_1, DIRECT_EXCHAGE, "insert");
			// channel.queueBind(QUEUE_NAME_2, DIRECT_EXCHAGE, "update");
			for (int i = 1; i <= 5; i++) {
				// 发送信息
				String messageUpdate = "你好,小兔子!路由模式;routing key 为 update " + i;
				String messageInsert = "你好,小兔子!路由模式;routing key 为 insert " + i;
				// 声明事务
				channel.txSelect();
				/**
				 * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
				 * 参数2:路由key,简单模式可以传递队列名称
				 * 参数3:消息其它属性
				 * 参数4:消息内容
				 */
				channel.basicPublish(DIRECT_EXCHAGE, "update", MessageProperties.PERSISTENT_TEXT_PLAIN, messageUpdate.getBytes());
				channel.basicPublish(DIRECT_EXCHAGE, "insert", MessageProperties.PERSISTENT_TEXT_PLAIN, messageInsert.getBytes());
				System.out.println("提供者发送的消息:" + messageUpdate);
				System.out.println("提供者发送的消息:" + messageInsert);
				// 提交事务
				channel.txCommit();
			}
		} catch (Exception e1) {
			try {
				// 回滚
				channel.txRollback();
			} catch (IOException e) {
				e.printStackTrace();
			}
		} finally {
			// 关闭资源
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			} catch (TimeoutException e) {
				e.printStackTrace();
			}
			try {
				connection.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}
}

消费者1

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerRouting1 {

	private static final String DIRECT_EXCHAGE = "direct_exchange";
	private static final String QUEUE_NAME_1 = "routing_direct_queue_1";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		//声明交换机
		channel.exchangeDeclare(DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_1, DIRECT_EXCHAGE, "insert");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_1, false, consumer);
	}
}

消费者2

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerRouting2 {

	private static final String DIRECT_EXCHAGE = "direct_exchange";
	private static final String QUEUE_NAME_2 = "routing_direct_queue_2";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		//声明交换机
		channel.exchangeDeclare(DIRECT_EXCHAGE, BuiltinExchangeType.DIRECT);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_2, DIRECT_EXCHAGE, "update");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_2, false, consumer);
	}
}

通配符模式

生产者

package com.hikktn.simple;

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

/**
 * @ClassName Producer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:08
 * @Version 1.0
 */
public class ProducerTopics {

	//交换机名称
	private static final String TOPIC_EXCHAGE = "topic_exchange";
	private static final String QUEUE_NAME_1 = "topic_queue_1";
	private static final String QUEUE_NAME_2 = "topic_queue_2";

	public static void main(String[] args) {
		// 创建连接工厂
		ConnectionFactory factory = new ConnectionFactory();
		// 主机地址;默认为 localhost
		factory.setHost("192.168.135.143");
		// 虚拟主机名称;默认为 /
		factory.setVirtualHost("/itcast");
		// 连接用户名;默认为guest
		factory.setUsername("hikktn");
		// 连接密码;默认为guest
		factory.setPassword("hikktn");

		Connection connection = null;
		Channel channel = null;
		try {
			// 创建连接
			connection = factory.newConnection();
			// 创建通道
			channel = connection.createChannel();
			/**
			 * 声明交换机
			 * 参数1:交换机名称
			 * 参数2:交换机类型,fanout、topic、direct、headers
			 */
			channel.exchangeDeclare(TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
			// 声明(创建)队列
			/**
			 * 参数1:队列名称
			 * 参数2:是否定义持久化队列
			 * 参数3:是否独占本次连接
			 * 参数4:是否在不使用的时候自动删除队列
			 * 参数5:队列其它参数
			 */
			// 提供方可以不需要创建队列和交换机,由消费者处理
			// channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);
			// channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);
			//队列绑定交换机
			// channel.queueBind(QUEUE_NAME_1, DIRECT_EXCHAGE, "insert");
			// channel.queueBind(QUEUE_NAME_2, DIRECT_EXCHAGE, "update");
			// 发送信息
			String messageUpdate = "你好,小兔子! key 为 hikktn.update ";
			String messageInsert = "你好,小兔子! key 为 hikktn.insert ";
			// 声明事务
			channel.txSelect();
			/**
			 * 参数1:交换机名称,如果没有指定则使用默认Default Exchage
			 * 参数2:路由key,简单模式可以传递队列名称
			 * 参数3:消息其它属性
			 * 参数4:消息内容
			 */
			channel.basicPublish(TOPIC_EXCHAGE, "hikktn.update", MessageProperties.PERSISTENT_TEXT_PLAIN, messageUpdate.getBytes());
			channel.basicPublish(TOPIC_EXCHAGE, "hikktn.insert.123", MessageProperties.PERSISTENT_TEXT_PLAIN, messageInsert.getBytes());
			System.out.println("提供者发送的消息:" + messageUpdate);
			System.out.println("提供者发送的消息:" + messageInsert);
			// 提交事务
			channel.txCommit();
		} catch (Exception e1) {
			try {
				// 回滚
				channel.txRollback();
			} catch (IOException e) {
				e.printStackTrace();
			}
		} finally {
			// 关闭资源
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			} catch (TimeoutException e) {
				e.printStackTrace();
			}
			try {
				connection.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

	}
}

消费者1

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerTopics1 {

	private static final String TOPIC_EXCHAGE = "topic_exchange";
	private static final String QUEUE_NAME_1 = "topic_queue_1";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		// 声明交换机
		channel.exchangeDeclare(TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_1, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_1, TOPIC_EXCHAGE, "*.update");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_1, false, consumer);
	}
}

消费者2

package com.hikktn.consumer;

import com.hikktn.util.ConnectionUtil;
import com.rabbitmq.client.*;

import java.io.IOException;

/**
 * @ClassName Consumer
 * @Description TODO
 * @Author lisonglin
 * @Date 2021/4/5 21:42
 * @Version 1.0
 */
public class ConsumerTopics2 {

	private static final String TOPIC_EXCHAGE = "topic_exchange";
	private static final String QUEUE_NAME_2 = "topic_queue_2";

	public static void main(String[] args) throws Exception {
		// 创建连接工厂
		Connection connection = ConnectionUtil.getConnection();
		// 创建通道
		final Channel channel = connection.createChannel();
		//声明交换机
		channel.exchangeDeclare(TOPIC_EXCHAGE, BuiltinExchangeType.TOPIC);
		// 声明(创建)队列
		/**
		 * 参数1:队列名称
		 * 参数2:是否定义持久化队列
		 * 参数3:是否独占本次连接
		 * 参数4:是否在不使用的时候自动删除队列
		 * 参数5:队列其它参数
		 */
		channel.queueDeclare(QUEUE_NAME_2, true, false, false, null);

		//队列绑定交换机
		channel.queueBind(QUEUE_NAME_2, TOPIC_EXCHAGE, "hikktn.#");
		//创建消费者;并设置消息处理
		DefaultConsumer consumer = new DefaultConsumer(channel) {
			@Override
			/**
			 * consumerTag 消息者标签,在channel.basicConsume时候可以指定
			 * envelope 消息包的内容,可从中获取消息id,消息routingkey,交换机,消息和重传标志(收到消息失败后是否需要重新发送)
			 * properties 属性信息
			 * body 消息
			 */ public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
				// //路由key
				// System.out.println("路由key为:" + envelope.getRoutingKey());
				// //交换机
				// System.out.println("交换机为:" + envelope.getExchange());
				// //消息id
				// System.out.println("消息id为:" + envelope.getDeliveryTag());
				//收到的消息
				System.out.println("接收到的消息为:" + new String(body, "utf-8"));
				channel.basicAck(envelope.getDeliveryTag(), false);
			}
		};
		//监听消息
		/**
		 * 参数1:队列名称
		 * 参数2:是否自动确认,设置为true为表示消息接收到自动向mq回复接收到了,mq接收到回复会删除消息,设置为false则需要手动确认
		 * 参数3:消息接收到后回调
		 */
		channel.basicConsume(QUEUE_NAME_2, false, consumer);
	}
}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

hikktn

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值