码迷,mamicode.com
首页 > 其他好文 > 详细

配置tomcat对软连接的支持

时间:2018-07-07 11:19:01      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:path   dir   默认   增加   apach   class   classname   tomcat   link   

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对软连接的支持

标签:path   dir   默认   增加   apach   class   classname   tomcat   link   

原文地址:http://blog.51cto.com/rogerwang/2137439

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!