配置tomcat对软链接的支持

tomcat默认不支持软链接,须要为Context 增长allowLinking="true"


Tomcat 4:

Xml代码:
    <Context path="/test" docBase="/data/www">  
                <Resources className="org.apache.naming.resources.FileDirContext" allowLinking="true"/>  
    </Context>

Tomcat 5/6/7:

Xml代码:
<Context path="/test" docBase="/data/www" allowLinking="true"/>

Tomcat 8/9:

Xml代码
    <Context path="/test" docBase="/data/www">  
            <Resources allowLinking="true"/> 
    </Context>
相关文章
相关标签/搜索