tomcat 软连接的使用
默认 tomcat 不支持软链接的目录或者文件。直接使用会报错。
可以在tomcat里context.xml文件里设置allowLinking="true"就可以打开软连接。根据tomcat版本不同有不同的设置:
tomcat567版本: context.xml
<Context allowLinking="true" />
tomcat89版本: context.xml
<Context> <Resources allowLinking="true" /> </Context>
根据context.xml文件的不同位置又有3种设置方法:
在conf目录下修改context.xml,所有在webapps里的项目都支持软连接;
在webapps下项目自己的META-INF里修改context.xml,只有该项目自己支持软连接;
在conf\Catalina\主机名下修改项目名.xml,同样只有该项目自己支持软连接。
0顶
0 踩
共 0 条评论