1. 程式人生 > >配置tomcat對軟連接的支持

配置tomcat對軟連接的支持

docbase 默認 cat apach apache source all sna test

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>  

配置tomcat對軟連接的支持