Ambqpioexception of rabbitmq error: java.io.ioexception

org.springframework.amqp.AmqpIOException: java.io.IOException

at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:71)
at org.springframework.amqp.rabbit.connection.RabbitAccessor.convertRabbitAccessException(RabbitAccessor.java:116)
at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2103)
at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2050)
at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2030)
at org.springframework.amqp.rabbit.core.RabbitAdmin.initialize(RabbitAdmin.java:591)

The error reports are as follows:
if this problem occurs because you are writing the expired section, it is probably because you are in the same queue.

1. The expiration time of the previous queue is modified in the later code

2. When declaring the queue, the exclusive attribute is specified as true. This attribute indicates whether there can be exclusive. There can only be one consumer listener queue. When cnnection is closed. Whether to delete the queue. If true is set, an error will be reported when multiple services are connected to the consumer

Read More: