配置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>
相關文章
相關標籤/搜索