gpt4 book ai didi

java - Camel 文件处理

转载 作者:行者123 更新时间:2023-12-01 13:36:07 24 4
gpt4 key购买 nike

我正在使用 Camel (2.11.0)尝试并实现以下功能:

  • 如果文件存在于某个位置,请将其复制到另一个位置,然后开始处理
  • 如果不存在这样的文件,那么我不希望文件消费者/轮询器阻塞;我只想继续处理到 direct:cleanup路线

我只想轮询一次文件!

这是我到目前为止所得到的(使用 Spring XML):

<camelContext id="my-camel-context" xmlns="http://camel.apache.org/schema/spring">
<route id="my-route
<from uri="file:///home/myUser/myApp/fizz?include=buzz_.*txt"/>

<choice>
<when>
<!-- If the body is empty/NULL, then there was no file. Send to cleanup route. -->
<simple>${body} == null</simple>
<to uri="direct:cleanup" />
</when>

<otherwise>
<!-- Otherwise we have a file. Copy it to the parent directory, and then continue processing. -->
<to uri="file:///home/myUser/myApp" />
</otherwise>
</choice>

<!-- We should only get here if a file existed and we've already copied it to the parent directory. -->
<to uri="bean:shouldOnlyGetHereIfFileExists?method=doSomething" />
</route>

<!--
Other routes defined down here, including one with a "direct:cleanup" endpoint.
-->
</camelContext>

按照上面的配置,如果/home/myUser/myApp/fizz处没有文件,然后 Camel 只是等待/阻塞,直到有一个为止。相反,我希望它放弃并继续direct:cleanup .

如果有一个文件,我会看到它在 shouldOnlyGetHereIfFileExists 内得到处理。 bean,但我没有看到它被复制到 /home/myUser/myApp ;所以这几乎就像 <otherwise>元素被完全跳过/忽略!

有什么想法吗?提前致谢!

最佳答案

尝试此设置,并调整轮询间隔以适应:

来自Camel File Component文档:

sendEmptyMessageWhenIdle

default =false

Camel 2.9: If the polling consumer did not poll any files, you can enable this option to send an empty message (no body) instead.

关于写入文件,请在 <otherwise> 内添加日志语句以确保其得到执行。如果是,请检查文件/文件夹权限等。

祝你好运。

关于java - Camel 文件处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21258313/

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