Spring RabbitMQ将新队列附加到现有侦听器

时间:2018-09-24 16:57:53

标签: java spring spring-boot rabbitmq spring-amqp

我需要动态声明新队列并将其分配给现有侦听器。

我有一个这样声明的监听器:

@Component
public class AccountListener {
    @RabbitListener(id = "foobar")
    public String foo(String a) {
        System.out.println(a);
        return a + "xxx";
    }
}

我可以使用RabbitListenerEndpointRegistry来检索此侦听器,但是如何通过队列将其公开?

@Autowired
private AmqpAdmin rabbit;
@Autowired
private RabbitListenerEndpointRegistry registry;


public void exposeQueue(String queueName) throws Exception {
      Queue queue = new Queue(queueName, false);

      rabbit.declareQueue(queue);
      SimpleMessageListenerContainer listener = (SimpleMessageListenerContainer) registry.getListenerContainer("foobar");

     // Attach $listener to $queue here

}

1 个答案:

答案 0 :(得分:2)

您应将队列添加到容器的队列列表中:

listener.addQueueNames(queueName);

addQueueNames()方法将在运行时将队列添加到容器中。有关更多信息,请参见here