例如:
注册发送消息,邮件和微信能收到消息,短信无法收到消息

配置路由key即可
相当于给SQL语句添加个where条件进行过滤

新建交换机之后在绑定queue的时候可以指定路由key

image.png


发送消息

image.png

实现

路由模式(Routing)

image.png

生产者

  1. public class Producer {
  2. private static Logger log = LoggerFactory.getLogger(Producer.class);
  3. public static void main(String[] args) {
  4. // 步骤
  5. // 1. 创建连接工厂
  6. log.info("1. 创建连接工厂");
  7. ConnectionFactory connectionFactory = new ConnectionFactory();
  8. //配置相关配置项
  9. connectionFactory.setHost("112.74.175.76");
  10. connectionFactory.setPort(5672);
  11. connectionFactory.setUsername("admin");
  12. connectionFactory.setPassword("admin");
  13. connectionFactory.setVirtualHost("/");
  14. //声明连接和通道
  15. Connection connection = null;
  16. Channel channel = null;
  17. try {
  18. // 2. 创建连接 Connection
  19. log.info("2. 创建连接 Connection");
  20. connection = connectionFactory.newConnection("生产者");
  21. // 3. 通过连接获取通道Chanel
  22. log.info("3. 通过连接获取通道Chanel");
  23. channel = connection.createChannel();
  24. // 5. 准备消息
  25. log.info("5. 准备消息");
  26. String msg = "Hello direct-exchange "+System.currentTimeMillis();
  27. // 6. 准备交换机
  28. log.info("6. 准备交换机");
  29. String exchangeName = "direct-exchange";
  30. // 7. 定义路由key
  31. log.info("7. 定义路由key");
  32. String routingKey = "message";
  33. // 8. 定义交换机类型
  34. log.info("8. 定义交换机类型");
  35. String exchangeType = "direct";
  36. /**
  37. * @param 交换机
  38. * @param 队列名称/路由key
  39. * @param 属性配置
  40. * @param 发送消息内容
  41. */
  42. channel.basicPublish(exchangeName,routingKey,null,msg.getBytes());
  43. log.info("消息发送成功:{}",msg);
  44. } catch (Exception e) {
  45. e.printStackTrace();
  46. } finally {
  47. log.info("关闭连接");
  48. // 7. 关闭通道
  49. if (ObjectUtil.isNotEmpty(channel) && channel.isOpen()) {
  50. try {
  51. channel.close();
  52. } catch (IOException | TimeoutException e) {
  53. e.printStackTrace();
  54. }
  55. }
  56. // 8. 关闭连接
  57. if (ObjectUtil.isNotEmpty(connection) && connection.isOpen()) {
  58. try {
  59. connection.close();
  60. } catch (IOException e) {
  61. e.printStackTrace();
  62. }
  63. }
  64. }
  65. }
  66. }

image.png


消费者

public class Consumer {
    private static Logger log = LoggerFactory.getLogger(Consumer.class);
    private static Runnable runnable = new Runnable() {
        @Override
        public void run() {
            //    步骤
            //    1. 创建连接工厂
            log.info("1. 创建连接工厂");
            ConnectionFactory connectionFactory = new ConnectionFactory();
            //配置相关配置项
            connectionFactory.setHost("112.74.175.76");
            connectionFactory.setPort(5672);
            connectionFactory.setUsername("admin");
            connectionFactory.setPassword("admin");
            connectionFactory.setVirtualHost("/");

            //获取队列的名称
            final String queueName = Thread.currentThread().getName();

            //声明连接和通道
            Connection connection = null;
            Channel channel = null;
            try {
                //     2. 创建连接 Connection
                log.info("2. 创建连接 Connection");
                connection = connectionFactory.newConnection("消费者-1");

                //    3. 通过连接获取通道Chanel
                log.info("3. 通过连接获取通道Chanel");
                channel = connection.createChannel();

                //    4. 通过通道创建交换机,声明队列,绑定关系,路由key,发送消息,接收消息
                //声明队列
                log.info("4. 通过通道接收消息");

                log.info("参数传递队列名称:{}", queueName);

                //5. 声明队列存储消息,如果不存在则被创建,rabbitmq不允许存在两个相同的队列名称
                log.info("5. 声明队列存储消息");

                //6. 定义接收消息的回调
                log.info("6. 定义接收消息的回调");
                Channel callbackChannel = channel;
                /**
                 * @param queue 队列名称
                 * @param durable 是否持久化
                 * @param exclusive 是否排他,是否是私有的,如果为true,则会对当前队列加锁,其他的通道不能访问,并且连接自动关闭
                 * @param autoDelete  是否自动删除 当最后一个消费者断开连接之后是否自动删除消息
                 * @param arguments 可以设置队列附加参数,设置队列的有效期,消息的最大长度,队列的生命周期
                 */
                callbackChannel.basicConsume(queueName, true, new DeliverCallback() {
                    @Override
                    public void handle(String s, Delivery delivery) throws IOException {
                        log.info(String.valueOf(delivery.getEnvelope().getDeliveryTag()));
                        log.info("{}:收到的消息是:{}",queueName, new String(delivery.getBody(), StandardCharsets.UTF_8));
                    }
                }, new CancelCallback() {
                    @Override
                    public void handle(String s) throws IOException {
                        log.error("接受消息失败:{}", s);
                    }
                });

                System.out.println("开始接收消息");
                //阻断执行
                // System.in.read();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                log.info("关闭连接");
                //    7. 关闭通道

                if (ObjectUtil.isNotEmpty(channel) && channel.isOpen()) {

                    try {
                        channel.close();
                    } catch (IOException | TimeoutException e) {
                        e.printStackTrace();
                    }
                }

                //    8. 关闭连接
                if (ObjectUtil.isNotEmpty(connection) && connection.isOpen()) {
                    try {
                        connection.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    };

    public static void main(String[] args) {
        //采用多线程的方式进行创建,使用线程名作为队列名
        new Thread(runnable,"q1").start();
        new Thread(runnable,"q2").start();
        new Thread(runnable,"q3").start();
    }
}