我使用RabbitTemplate类使用
spring amqp写入RabbitMQ队列.我使用convertAndSend方法将消息发送到队列.这在正常情况下运行良好,但如果队列不存在,它似乎无声地失败.不会抛出异常,也不会将错误/调试消息记录到记录器中.
确保邮件发送的最佳方式是什么?
以下是代码当前正在执行的操作的示例.
RabbitTemplate template = new RabbitTemplate(factory); template.setQueue(queueName); template.setRoutingKey(queueName); template.convertAndSend(message);