第 378 章 XSLT Component
从 Camel 版本 1.3 开始提供
xslt: 组件允许您使用 XSLT 模板处理消息。这在使用 Templating 生成请求的重新填充时是理想的选择。
378.1. URI 格式
xslt:templateName[?options]
URI 格式包含 templateName,它可以是以下之一:
- 要调用的模板的 classpath-local URI
- 远程模板的完整 URL。
您可以使用以下格式将查询选项附加到 URI 中:
?option=value&option=value&…
如需 URI 语法的更多详情,请参阅 Spring 文档。
URI | 描述 |
---|---|
xslt:com/acme/mytransform.xsl | 在 classpath 上引用 com/acme/mytransform.xsl 文件 |
xslt:file:///foo/bar.xsl | 指的是文件 /foo/bar.xsl |
xslt:http://acme.com/cheese/foo.xsl | 引用远程 http 资源 |
对于 Camel 2.8 或更早的版本,Maven 用户需要将以下依赖项添加到组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
从 Camel 2.9 开始,XSLT 组件直接在 camel-core 中提供。