标签:path dir 默认 增加 apach class classname tomcat link
tomcat默认不支持软连接,需要为Context 增加allowLinking="true" Xml代码:
<Context path="/test" docBase="/data/www">
<Resources className="org.apache.naming.resources.FileDirContext" allowLinking="true"/>
</Context>
Xml代码:
<Context path="/test" docBase="/data/www" allowLinking="true"/>
Xml代码
<Context path="/test" docBase="/data/www">
<Resources allowLinking="true"/>
</Context>
标签:path dir 默认 增加 apach class classname tomcat link
原文地址:http://blog.51cto.com/rogerwang/2137439