当前位置:   article > 正文

springboot动态监听rabbitMq队列_springboot队列监听

springboot队列监听

很多时候,要求mq队列能够配置,或者说多个用户要求mq队列名称为用户名+固定的字符串,但是监听同一个方法,这个时候就需要用到动态监听。代码如下

    @Autowired
    private AmqpAdmin amqpAdmin;
    @Autowired
    private  SimpleMessageListenerContainer container;
    public String addQueue(Queue queue){
        return amqpAdmin.declareQueue(queue);
    }

    @Override
    public void run(String... args) throws Exception {
        String queueName=SpringUtils.getApplicationContext().getBean(Environment.class).getProperty("queue");//配置文件中配置,也可配置在数据库
        MessageListenerAdapter messageListenerAdapter = new MessageListenerAdapter(new MessageListen());//消费mq消息的类
        List<String> queueNamesList=new ArrayList<>();
        messageListenerAdapter.addQueueOrTagToMethodName(queueName,"getMessage");//消费mq消息的方法
        queueNamesList.add(queueName);
        logger.info("新增队列queueName={}",queueName);
        Queue queue = new Queue(queueName);
        addQueue(queue);
        if(!queueNamesList.isEmpty()){
            String[] strings=new String[queueNamesList.size()];
            container.addQueueNames(queueNamesList.toArray(strings));
        }
        container.setMessageListener(messageListenerAdapter);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

如果是多个用户,则是给queueNamesList循环添加数据即可

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/618632
推荐阅读
相关标签
  

闽ICP备14008679号