Activemq-camel:不能使用<uri="http://..." >



我需要帮助来解决这个问题,下面的代码在 bean 中.xml给了我错误

<camelContext id="activeContext1" xmlns="http://camel.apache.org/schema/spring">
    <route>
        <from uri="activemq:queue:ThermalMap"/>
        <to uri="http://myhost:8161/Example?throwExceptionOnFailure=false"/>
    </route>
</camelContext>

我得到的错误:

org.apache.camel.RuntimeCamelException: org.apache.camel.FailedToCreateRouteException: 无法创建路由 route1 at :>>> to[http://myhost:8161/Example?throwExceptionOnFailure=false] <<

也许你还没有把 camel-http 组件放在类路径中。如果您使用的是 maven,那么将 camel-http 组件的依赖项放在您的 pom 中,它就可以工作了。

相关内容

  • 没有找到相关文章

最新更新