378.6. 使用 xsl:include
Camel 2.2 或更早版本
如果您在 Camel 2.2 或更早版本的 XSL 文件中使用 xsl:include
,则使用默认的 javax.xml.transform.URIResolver
。文件将相对于 JVM 启动文件夹来解析。
例如,以下 include 语句将查找从启动应用程序的文件夹开始的 staff_template.xsl
文件。
<xsl:include href="staff_template.xsl"/>
Camel 2.3 或更新版本
for Camel 2.3 或更新版本,Camel 提供自己的 URIResolver
实施。这允许 Camel 从 classpath 加载包含的文件。
例如,以下代码中的 include 文件将位于相对于起始端点。
<xsl:include href="staff_template.xsl"/>
这意味着 Camel 将在 classpath 中查找文件,作为 org/apache/camel/component/xslt/staff_template.xsl
您可以使用 classpath:
或 file:
来指示 Camel 在 classpath 或文件系统中查找。如果省略前缀,则 Camel 将使用端点配置中的前缀。如果在端点配置中没有指定前缀,则默认为 classpath:
。
您还可以在 include 路径中向后引用。在以下示例中,xsl 文件将在 org/apache/camel/component
下解析。
<xsl:include href="../staff_other_template.xsl"/>