Spring AMQP and ShutdownSignalException
问题 I have an AMQP Project with Spring AMQP. The RabbitMQ Server is not mine, so I have no control over it. When my application starts, it makes a private response queue like this: @Bean(name="myAnonymousResponseQueue") public Queue myAnonymousResponseQueue() { Queue q = myAmqpAdmin().declareQueue(); return q; } And I have a SimpleMessageListenerContariner like this: @Bean public SimpleMessageListenerContainer myResponseMessageListenerContainer() { SimpleMessageListenerContainer container = new