第 377 章 XSLT Component
作为 Camel 版本 1.3 提供
xslt: 组件允许您使用 XSLT 模板来处理消息。这在使用 Templating 来为请求生成 respopns 时的理想选择。
377.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>
来自 XSLT 组件的 Camel 2.9 直接在 camel-core 中提供。