第 52 章 XSLT
仅支持制作者
XSLT 组件允许您使用 XSLT 模板处理消息。在使用指示为请求生成响应时,这是理想的选择。
52.1. URI 格式
xslt:templateName[?options]
URI 格式包含 templateName,它可以是以下之一:
- 要调用的模板的 classpath-local URI
- 远程模板的完整 URL。
您可以按照以下格式将查询选项附加到 URI:
?option=value&option=value&…
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 资源 |