我的骆驼路线定义如下:
from("file:" + this.notificationsFileDropPath + "/?fileName=notifications.csv" +
"&preMove=inprogress" +
"&move=processed")
.routeId("notifications.readcsv")
.unmarshal().csv()
.to("direct:notifications-parsing");
当" notificationsFileDropPath"上面的路线无法正常工作(卡住)是一个共享文件夹:意味着我的路由在两台不同的计算机上处于活动状态,但共享文件夹对两者都是通用我尝试使用camel文档中提到的readLock选项,但这也没有帮助。关于如何使这项工作的任何线索?