我有一个骆驼端点,另一个应用程序发送一个带有一些数据的发布请求(也许有其他一些路由)
我想处理这些数据并通过 POST 请求的响应将某些内容返回给应用程序。
这就是我的骆驼上下文目前的样子:
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<restConfiguration component="restlet" bindingMode="json" port="8989" enableCORS="true"/>
<rest path="/finData">
<description>User rest service</description>
<post>
<to uri="direct:update"/>
</post>
</rest>
<route id="sendFinData">
<from uri="direct:update"/>
<log message="Got some data: ${body}"/>
<to uri="aclient://otherClient"/>
</route>
</camelContext>
如何通过发布请求的响应从路由 sendFinData 发回一些答案?