我尝试在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文件的正确方法是什么?
答案 0 :(得分:1)
您使用什么网络容器?什么是Camel版本?
你是否尝试过没有领先/斜线。
<to uri="xslt:WEB-INF/folder1/event.xsl" />