让Tomcat支持引用软连接资源
时间:2014-04-28 09:45:57
收藏:0
阅读:642
默认情况下想通过在Tomcat下建立软连接来使tomcat上的应用引用该资源是不行的。会出现类似错误:
java.lang.IllegalStateException: ContainerBase.addChild: start: LifecycleException: start: : java.io.IOException: Failed to access resource XXX
这时候需要打开支持引用软连接资源的开关:allowLinking="true",
比如在context标签下加入allowLinking="true":
<Context path="/XXX" override="true" allowLinking="true"> </Context>
或者在resources标签下加入allowLinking="true",
<Resources className="xoxo" allowLinking="true"> </Resources >
评论(0)