第 378 章 XSLT Component
从 Camel 版本 1.3 开始提供
xslt: 组件允许您使用 XSLT 模板处理消息。在使用 Templating 为请求生成 respopnses 时,这是理想选择。
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 中直接提供。