【发布时间】:2012-11-05 16:14:53
【问题描述】:
我尝试在 war 文件中部署 Apache Camel 应用程序。 Webapp结构如下:
webapp
..WEB-INF
...folder1
....event.xsl
以下代码不起作用,我收到错误“在类路径中找不到资源”
<route>
<from uri="seda:trade2confirmation" />
<to uri="xslt:/WEB-INF/folder1/event.xsl" />
<to uri="log:output?showAll=true" />
</route>
访问 event.xsl 文件的正确方法是什么?
【问题讨论】:
标签: war apache-camel