基于tomcat映射路径配置方法分享
tomcat请求头配置
在使用postman测试的时候(携带参数)我们经常会发现浏览器一个错误:request header is too large,意思是请求头字段太长了。在这里需要配置下tomcat请求头长度。
tomcat-service.xml
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" maxHttpHeaderSize ="1024000"/>
tomcat映射硬盘路径
在开发时候做文件上传功能时,如果我们存储位置是根据项目来设置的(比如:项目名称CwebappCimages-upload这样的存储路径),这样会出现一个问题,上传后不能及时显示出文件,网页请求时候出现404,你需要刷新下才能出现文件。所以一般我们比较好的做法是使用tomcat映射硬盘路径。具体配置为:
tomcat-service.xml
<Context docBase="D:\img\" path="/cloud/img/"/>
这句话的意思是:访问localhost:8080/cloud/img/1.jpg其实访问的就是D:\img\1.jpg文件
相关推荐
FanErZong 2020-07-18
86284851 2020-06-16
85427617 2020-06-13
88291846 2020-06-07
86284851 2020-02-28
81510598 2020-01-08
88291846 2020-01-04
86284851 2019-12-28
detianlangzi 2014-06-17
85427617 2019-12-24
87497118 2019-11-28
82981634 2014-03-25
85427617 2015-08-19
81510598 2019-11-11
86284851 2019-11-08
doITwhat 2015-09-11