Tomcat与链接目录的配置
2017-09-30 本文已影响0人
爱蛇
有后台项目 admin ,上传目录 admin/uploadfiles
前端接口项目 web , 上传目录 web/uploadfiles
为了 web跟admin共用同一个目录,使用链接目录实现,但tomcat 无法访问这些文件.
需要配置:
<Context allowLinking="true" />
<Context>
<Resources allowLinking="true" />
</Context>