tomcat配置虚拟文件路径

可以这样,文件上传到本地目录例如E\:/tomcat/upload/ 
web 访问这样: http://localhost:8080/project/upload/aa.jpg 
在服务器中配置映射地址, 以tomcat为例子 
在conf/server.xml中配置 

<Host name="localhost"  appBase="webapps" 
            unpackWARs="true" autoDeploy="true"> 

<Context path="/upload" docBase="E:/tomcat/upload/" debug="0" reloadable="true">   
        </Context> 
</Host> 

这样/upload  就映射到了文件存储的目录 

就可以通过名字才访问资源

posted @ 2017-05-17 14:26  喜欢就去做~  阅读(188)  评论(0编辑  收藏  举报