标签:class blog style code div java tar ext art color log
默认情况下想通过在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 >
让Tomcat支持引用软连接资源,布布扣,bubuko.com
标签:class blog style code div java tar ext art color log
原文地址:http://www.cnblogs.com/mvii/p/tomcat_allowlinking.html