0
<camel:from id="_from2" uri="timer://foo?repeatCount=1"/>
            <camel:to id="_to2" uri="DBSQLComponent:{{sql.testQuery}}"/>
            <log id="_log4" message="Received ${body.size()} records from the poller query"/>
            <log id="_log5" message="Message Body= ${body}"/>
            <to id="_to3" uri="log:output?showAll=true"/>
            <camel:process id="_processNewNotifications" ref="newNotifications"/>
            <setHeader headerName="CamelHttpMethod" id="setHeader4">
                <constant>GET</constant>
            </setHeader>
            <setHeader headerName="Content-Type" id="_setHeader5">
                <constant>application/json</constant>
            </setHeader>                                                                                                                                                                                                                        
            <setHeader headerName="CamelHttpQuery" id="setHeader7">
                <simple>Id=${property.POList}</simple>
            </setHeader>
            <inOut id="_createPO" uri="cxfrs:bean:purchaseOrderDetailsEndpoint+${property.POList}"/>
</camel>

我是骆驼的新手,我正在努力寻找资源来仅附加参数的值?对于当前代码,它将添加 ?Id=${property.POList} 到端点。我只希望将值 ${property.POList} 添加到其余端点。请建议最好的做法是在 Spring DSL 中只向端点添加一个值。谢谢!

4

2 回答 2

0

你可以尝试一个toDreceipientList,它允许参数输入到URI

于 2020-01-10T16:23:57.937 回答
0

您正在设置一个名为“CamelHttpQuery”的特殊标头,当交换被传递到 CXFRS 组件时,它会将其内容作为 HTTP 查询添加到 CXF URL(这就是为什么您会看到 ? 符号被自动添加)。

您可以尝试改用标题“CamelHttpPath”,它应该设置资源路径。

于 2020-01-10T22:41:11.443 回答