使用Camel每天从FTP服务器读取带日期戳的文件

时间:2015-06-15 15:28:15

标签: java apache-camel camel-ftp

我正在尝试每天从FTP服务器读取带日期戳的文件,比如说16:15。为了了解如何执行此操作,我尝试连接到FTP服务器,每分钟一次,并每次都输入文件号。

我到目前为止编写的代码是:

private String readFtp = "quartz2://exchange/readFtp?cron=";
private String cronExpression = "1 * * * * ?";

private int i=0;

@Override
public void configure() throws Exception {
    from(readFtp+cronExpression).process(new Processor() {
        @Override
        public void process(Exchange exchange) throws Exception {

            System.out.println("Triggered the process");

            from(getFtpServerUrl())
                    .bean(RateServiceImpl.class, "update")
                    .log("Downloaded file ${file:name} complete.");
        }
    });
}

private String getFtpServerUrl() {

    i++;
    System.out.println("Here with i=" + i);
    return String.format("ftp://%s:21/%s?username=%s&password=%s&fileName=%s", ftpServer, ftpPath, ftpUsername, ftpPassword, "rate"+i+".xml");
}

当我运行它时,它每分钟打印一次"Triggered the process"。它也在调用getFtpServerUrl

它没有调用RateServiceImpl.update。它没有记录"Downloaded file ${file:name} complete."

  • 我是以错误的方式解决这个问题吗?
  • 是否有更简单的方法来每分钟构建fileName?
  • 为什么没有RateServiceImpl.update被召唤?

1 个答案:

答案 0 :(得分:0)

你这样做是错误的。要从处理器添加路由,您需要将路由添加到camelContext,而不是使用错误的父类RouteBuilder

ftp使用者内置了对cron表达式的支持,因此您可以将其配置为每天下午4:15运行。然后你需要使用文件过滤器来过滤它找到的文件,并且只选择你想要的文件。

过滤器记录在

这里有一点cron

我写了一篇关于它的博客