Springboot 整合 rabbitmq 项目中只有消费者,没有生产者 ,由于没有声明队列,现在报错了,怎么在 rabbitmq 建消息队列?

我的项目里面里面用到的技术框架是 Springboot  rabbitmq 

需要接收其他系统发到队列里面的信息

但是因为其他系统还未声明这个队列,所以当我启动我的项目的时候就会报错,所以 我需要在我这个只有消费者的队列里声明这个队列

首先登陆 rabbitmq ,查看没有 "test_queue2"

 


    @Bean
    public Queue testQueue(){
        return new Queue("test_queue2");
    }

 

再执行就会看到 test_queue2 队列的出现了

大家可以参考 我的 源码

https://gitee.com/coder_xiaozhao/rabbitmq-demo

你可能感兴趣的:(java,springboot,rabbitmq)