在tomcat中共享文件夹
如何使用 tomcat 6 浏览器访问文件夹?
我想我需要向 web.xml 添加上下文?
我想 - 因此,当我导航到 http://localhost:8080/myfiles 时,我希望看到 c:\temp 的内容
谢谢
How can I enable a folder to be accessable using a browser with tomcat 6 ?
I think I need to add a context to web.xml ?
I'm trying -
So when I navigate to http://localhost:8080/myfiles I expect to see the contents of c:\temp
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
META-INF/context.xml
,并在
元素中设置docBase
指向所需的目录。查看此处要在
Context< 中设置的属性/代码> 元素
You need
META-INF/context.xml
, and there in the<Context>
element setdocBase
to point to the desired directory.See here the attributes to set in the
Context
element