tomcat 对软连接的支持

来源:互联网 发布:淘宝新品上架2小时内刷 编辑:程序博客网 时间:2024/05/22 06:55
打开tomcat对软连接的支持。

 

 tomcat默认不支持软连接,需要为Context 增加allowLinking="true"。

Tomcat 4:

Xml代码
  1. <Context path="/test" docBase="/usr/local/pjt/images">  
  2.   <Resources className="org.apache.naming.resources.FileDirContext" allowLinking="true"/>  
  3. </Context>  
 

 Tomcat 7/6/5:   

Xml代码
  1. <Context path="/test" docBase="/usr/local/pjt/images"allowLinking="true"/>  

 

Tomcat 8:   
Xml代码
  1. <Context path="/test" docBase="/usr/local/pjt/images">  
  2.   <ResourcesallowLinking="true"/>
  3. </Context>  
 
0 0
原创粉丝点击