小编uzx*_*024的帖子

SimpleParserException:未知函数:property.fileName

我正在使用 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})");
Run Code Online (Sandbox Code Playgroud)

例外:

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

apache-camel camel-sql

2
推荐指数
1
解决办法
3211
查看次数

标签 统计

apache-camel ×1

camel-sql ×1