怎么把资源放webapp外也能被访问? 现在有个项目,用的tomcat,可能要上传很多的图片,系统是winserver2012,有C,D,E三个盘,项目放在D盘,到时上传的文件越来越多,怎么把上传的文件放到webapp外面,然后怎样才能读取这些资源呢? ------解决方案-------------------- 程序代码中设定完全路径来实现 ------解决方案-------------------- 用绝对路径来读取,这时的webapps目录就只被当做一个普通的文件夹了,直接读取webapps外面的路径就是了。 ------解决方案-------------------- Here is the instruction:
ln -s /opt/res/ inc/
/opt/res is the file contains all the real files
inc is under WebContent, and it is used for link all the file. ------解决方案-------------------- apache 虚拟路径 ------解决方案-------------------- 推荐nginx映射 ------解决方案--------------------