1

我正在使用 Apache Camel 3.0,解析文件时出现此错误:

    from("file:" + filePath)
            .routeId("create-ticket")
            .unmarshal(ticketCsv)
            .to("jpa:Ticket")
            .log("Created new ticket with id ${body.id}")
            .convertBodyTo(String.class)
            .setProperty("fileName", simple("${header.CamelFileAbsolutePath}"))
            .setProperty("fileContents", body())
            .to("sql:INSERT INTO DOCUMENT(document_name, document_contents) VALUES(:#${property.fileName}, :#${property.fileContents})");

例外:

org.apache.camel.language.simple.types.SimpleIllegalSyntaxException:未知函数:位置 0 ${property.fileName} 的 property.fileName

4

1 回答 1

4

${property.xxx}在 2.x 中已弃用。使用${exchangeProperty.xxx}哪个是函数的正确名称。

可以在迁移指南中找到更多更改

于 2020-01-13T17:14:26.750 回答