美文网首页技术
Tomcat 之 文件服务器配置

Tomcat 之 文件服务器配置

作者: loading__ | 来源:发表于2018-04-22 11:23 被阅读2次

    目录

    (一)添加XML文件download.xml(conf/Catalina/localhost/)

    (二)修改web.xml(conf/)

    (三)启动 Tomcat,访问 http://localhost:8080/download/

    常见问题


    (一)添加XML文件download.xml(conf/Catalina/localhost/)

    说明:path可随意填写,访问路径以xml文件名为准;docBase指定要下载文件的位置。

    (二)修改web.xml(conf/)

    说明:此处改为true,设置允许 tomcat 列举文件

    (三)启动 Tomcat,访问 http://localhost:8080/download/

    说明:看到如上界面,则说明设置成功,至此结束。      

    常见问题

    文件名中包含中文访问出错

    解决方法:

    conf/server.xml文件增加 URIEncoding="UTF-8" 配置。

    相关文章

      网友评论

        本文标题:Tomcat 之 文件服务器配置

        本文链接:https://www.haomeiwen.com/subject/ogiqlftx.html