我正在使用 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>
元素被完全跳过/忽略了!
有任何想法吗?提前致谢!