https配置camel-config.xml

时间:2013-12-03 11:30:14

标签: java apache-camel

我正在使用在http协议中正常工作的camel-servlet-no-spring应用程序。如何将'to'作为https。

我的 camel-config.xml

<routes xmlns="http://camel.apache.org/schema/spring">
   <route>
     <from uri="servlet:///service?matchOnUriPrefix=true"/>
    <loadBalance>
     <failover>
       <exception>java.lang.Exception</exception>
      </failover>
      <to uri="http://localhost:8082/cdc/services?bridgeEndpoint=true&amp;throwExceptionOnFailure=false"/>
   </loadBalance> 
  </route>
</routes>

我想要

<to uri="https://localhost:8082/cdc/services?bridgeEndpoint=true&amp;throwExceptionOnFailure=false"/>

2 个答案:

答案 0 :(得分:2)

您可以根据需要更新到uri。我不知道你遇到了什么样的问题。

答案 1 :(得分:1)

<routes xmlns="http://camel.apache.org/schema/spring">
   <route>
     <from uri="servlet:///service?matchOnUriPrefix=true"/>
    <loadBalance>
     <failover>
       <exception>java.lang.Exception</exception>
      </failover>
      <to uri="https://localhost:8082/cdc/services?bridgeEndpoint=true&amp;throwExceptionOnFailure=false"/>
   </loadBalance> 
  </route>
</routes>

在uri

https://yourhost:8082/

我认为端口号可能是443.比如

https://yourhost:443/