0
我有一個使用駱駝的ftpcomponent一個不錯的簡單路徑:只有使用Spring DSL才能在Apache Camel中設置定時或輪詢路由嗎?
<camelContext id="myroute" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="file:///outgoing"/>
<to uri="ftp://[email protected]/test/?password=password"/>
</route>
</camelContext>
有沒有辦法讓這個路由觸發,說一小時一次,就在春節DSL?
該文件組件記錄在:http://camel.apache.org/file2作爲文件是在舊的文件組件在駝峯1.x這是EOL。 –
你也可以使用速記的延遲,例如延遲= 1小時1小時,這可能更容易閱讀 –
感謝您的評論克勞斯,我編輯我的答案,以反映他們。 – hveiga