我需要在出站端点上动态设置地址,并且根据我在 forward.url 中收到的内容,此出站 URL 可以是 HTTP 或 HTTPS。因此,我创建了 2 个子流,一个用于 HTTP,另一个用于 HTTPS。
为了将请求路由到适当的子流,我编写了一个 CHOICE 路由器,如下所示
<set-variable value="#[message.inboundProperties['http.query.params']['forward.url']]" variableName="forwardAddress" doc:name="Variable"/>
<logger message="Forward address is #[forwardAddress] , and does it start with http:// ~ #[String.valueOf('${forwardAddress}').startsWith('http://');]" level="INFO" doc:name="Logger"/>
<choice doc:name="Choice">
<when expression="#['${forwardAddress}'.startsWith('http://')]">
<flow-ref name="HttpCall" doc:name="HTTP subflow"/>
</when>
<when expression="#['${forwardAddress}'.startsWith('https://')]">
<flow-ref name="Httpscall" doc:name="HTTPS subflow"/>
</when>
<otherwise>
<set-payload value="The query string forward.url must start with http:// or https://" doc:name="Set Payload"/>
<http:response-builder doc:name="Invalid Request - 400" status="400"/>
</otherwise>
</choice>
但是,表达式无法正常工作。我究竟做错了什么?