2012-03-07 56 views

回答

1

不,在這個過程中沒有額外的端點。該文件使用FTP API移動。

您可以通過使用Camel API(例如使用消費者模板)從FTP服務器消費文件來測試它。類似的東西:

Exchange exchange = consumerTemplate.receiveNoWait("ftp://host/incoming?fileName=processed/" + theNameOfTheFile); 
assertNotNull(exchange);