0
我在我的代碼中使用循環。我知道,對第一to
發生循環中斷在Apache Camel: Route loop is lost when choice is added to the path駱駝:添加到內部循環多個
說現在,我有我想要的循環結束之前已經通過不同渠道路由的路由定義。例如:
.loop(simple("${header." + FILE_COUNT + "}"))
.to("direct:file-iterator")
.end()
from("direct:file-iterator").id("file-iterator")
.to("direct:read-file-checksum")
.to("direct:file-unzip")
是否有這種情況的什麼解決辦法是在我的代碼只有先得到第一次迭代後執行?
請您重新解釋您的問題,我不明白。 –
是的,我的問題是,在第一次迭代中,路由是直接完成的:file-iterator-> direct:read-file-checksum-> direct:file-unzip。但在第二次迭代中,只有直接執行:file-iterator-> direct:read-file-checksum路徑纔會被執行。 – saylee
在將消息路由到「direct:file-iterator」之前,您需要更新交換。 –