共享目录中的文件路由无法正常工作 - apache camel

时间:2016-10-07 04:11:55

标签: java apache-camel

我的骆驼路线定义如下:

from("file:" + this.notificationsFileDropPath + "/?fileName=notifications.csv" +
            "&preMove=inprogress" +
            "&move=processed")
        .routeId("notifications.readcsv")
                .unmarshal().csv()
  .to("direct:notifications-parsing");

当" notificationsFileDropPath"上面的路线无法正常工作(卡住)是一个共享文件夹:意味着我的路由在两台不同的计算机上处​​于活动状态,但共享文件夹对两者都是通用我尝试使用camel文档中提到的readLock选项,但这也没有帮助。关于如何使这项工作的任何线索?

0 个答案:

没有答案