我正在使用在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&throwExceptionOnFailure=false"/>
</loadBalance>
</route>
</routes>
我想要
<to uri="https://localhost:8082/cdc/services?bridgeEndpoint=true&throwExceptionOnFailure=false"/>
答案 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&throwExceptionOnFailure=false"/>
</loadBalance>
</route>
</routes>
在uri
https://yourhost:8082/
我认为端口号可能是443.比如
https://yourhost:443/