美文网首页
spring整合RabbitMQ配置异常

spring整合RabbitMQ配置异常

作者: onlyHalfSoul | 来源:发表于2018-06-17 13:32 被阅读12次

最近在整合RabbitMQ时spring报错

Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: A 'connection-factory' attribute must be set.
Offending resource: ServletContext resource [/WEB-INF/spring/rabbitmq/config.xml]

从报错中可以看下,是某个bean缺少connection-factory的属性,仔细对比后发现是此处问题:

<rabbit:template exchange="messageExchange" id="rabbitTemplate" />

改后:

<rabbit:template exchange="messageExchange" id="rabbitTemplate" connection-factory="connectionFactory"/>

很傻的错误,太疏忽了,template一定要注意连接属性注入。

相关文章

网友评论

      本文标题:spring整合RabbitMQ配置异常

      本文链接:https://www.haomeiwen.com/subject/aurweftx.html