第 110 章 FreeMarker 组件
从 Camel 版本 2.10 开始提供
freemarker: 组件允许使用 FreeMarker 模板处理消息。这在使用 Templating 生成请求的响应时是理想的选择。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-freemarker</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
110.1. URI 格式
freemarker:templateName[?options]
其中 templateName 是要调用的模板的 classpath-local URI,或者远程模板的完整 URL (例如: file://folder/myfile.ftl)。
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…