0
我是新來的阿帕奇駱駝和春季啓動。我正在編寫一個應用程序,我需要將文件從文件夾傳輸到jms隊列。但在此之前,我正在嘗試將文件從一個文件夾轉移到另一個文件夾,這種情況沒有發生。在運行應用程序作爲彈簧引導應用程序時,輸入文件夾被創建。如果將該文件粘貼到此文件夾中,則目標文件夾不會形成,並且日誌語句也不會顯示。這是我添加的路線:阿帕奇駱駝目錄之間的副本文件
@SpringBootApplication
public class CamelApplication extends FatJarRouter {
public static void main(String ... args) {
SpringApplication.run(CamelApplication.class, args);
}
@Override
public void configure() throws Exception {
from("file:input?noop=true")
.log("Read from the input file")
.to("file:destination")
.log("Written to output file");
}
}
謝謝。我添加了spring-boot-starter-web的依賴關係,並且工作正常。 – Megha