zoukankan      html  css  js  c++  java
  • rabbitmq学习——主题路由

    public class Send {
    public static final String exchangeName = "topic_logs";
    public static void main(String[] args) throws Exception{
    Connection connection = ChanncelFactory.getChanncelFactory();
    Channel channel = connection.createChannel();

    //主题路由
    channel.exchangeDeclare(exchangeName, "topic");

    String body = "主题路由";
    channel.basicPublish(exchangeName, "com.bonc.ioc", null, body.getBytes());

    ChanncelFactory.close(channel, connection);
    }
    }

    public class Receive {
    public static void main(String[] args) throws Exception {
    Connection connection = ChanncelFactory.getChanncelFactory();
    Channel channel = connection.createChannel();

    channel.exchangeDeclare(Send.exchangeName, "topic");

    String queuename = channel.queueDeclare().getQueue();

    // * 代表一个单词 #代表一个或者多个单词
    channel.queueBind(queuename, Send.exchangeName, "com.#");

    Consumer callback = new DefaultConsumer(channel){
    @Override
    public void handleDelivery(String consumerTag, Envelope envelope,
    BasicProperties properties, byte[] body) throws IOException {
    System.out.println("内容:"+new String(body,"utf-8"));
    }
    };

    for(int i=1; i<6; i++){
    Thread.sleep(2000);
    channel.basicConsume(queuename, true, callback);
    }

    ChanncelFactory.close(channel, connection);
    }
    }

  • 相关阅读:
    GPS精度因子(GDOP,PDOP,HDOP,VDOP,TDOP)
    VTD专题
    使用Python的Numpy 生成随机数列表
    Win10 下使用Ubuntu子系统
    Python依赖库查找
    使用技巧
    openstreetmap算路服务搭建
    笔记
    markdownpad
    缓和曲线09正弦一波型
  • 原文地址:https://www.cnblogs.com/core404/p/7645269.html
Copyright © 2011-2022 走看看