gpt4 book ai didi

java - Camel CXF休息: Setup then poll

转载 作者:行者123 更新时间:2023-12-01 09:56:55 24 4
gpt4 key购买 nike

问题很简单,但实现起来却很难。我只想将一些设置 POST 发送到 REST 服务器,然后在 POST 成功后开始每 5 秒使用 GET 进行轮询。使用 Camel CXFRS 组件在 Camel Spring XML 中实现这一点会是什么样子?我不想编写新代码或 Camel 端点,而是想使用现有的 Camel 工具来完成此操作。

最佳答案

你可以尝试下面的方法。有关 Camel 组件的详细信息,请参阅Apache camel documentation

<camelContext xmlns="http://camel.apache.org/schema/spring"
<route id="abc" shutdownRoute="Default" streamCache="true">
<from uri="timer://foo?fixedRate=true&amp;period=100000" />
<setHeader headerName="CamelHttpMethod">
<constant>POST</constant>
</setHeader>
--setheader for Content-Type
<recipientList>
<simple>https4://post url</simple>
</recipientList>
<log message="After Transmission " loggingLevel="DEBUG"
logName="com.domain" />
<recipientList>
<simple>https4://get url</simple>
</recipientList>
--unmarshall
</route>
</camelContext>

关于java - Camel CXF休息: Setup then poll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37144635/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com