标签: java tomcat
我希望能够访问系统外部的应用程序服务器上的文件。
我在host.xml下的server.xml上添加了这一行:
<Context docBase="/home/user/uploads" path="/files" />
在我的jsp上,我有
<a href="/files/${document.name}" class="thumbnail">
我一直在网址上获得404: http://localhost:8080/files/filename
有什么想法吗?