博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tomcat
阅读量:4981 次
发布时间:2019-06-12

本文共 770 字,大约阅读时间需要 2 分钟。

如何禁止

如何禁止DELETE、PUT、OPTIONS、TRACE、HEAD等协议访问应用程序应用程序呢?

解决方法 

第一步:修改应用程序的web.xml文件的协议

1
2
3
4
5
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
web-app
xmlns
=
""
 
xmlns:xsi
=
""
 
xsi:schemaLocation
=
""
 
version
=
"2.4"
>

第二步:在应用程序的web.xml中添加如下的代码即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<
security-constraint
>
 
<
web-resource-collection
>
  
<
url-pattern
>/*</
url-pattern
>
  
<
http-method
>PUT</
http-method
>
<
http-method
>DELETE</
http-method
>
<
http-method
>HEAD</
http-method
>
<
http-method
>OPTIONS</
http-method
>
<
http-method
>TRACE</
http-method
>
 
</
web-resource-collection
>
 
<
auth-constraint
>
 
</
auth-constraint
>
 
</
security-constraint
>
 
<
login-config
>
 
<
auth-method
>BASIC</
auth-method
>
 
</
login-config
>

转载于:https://www.cnblogs.com/guxiaobei/p/7942543.html

你可能感兴趣的文章
Docker 安装mysql以及外部访问
查看>>
spring boot中yml配置文件里横线的意思
查看>>
Numpy——进阶篇
查看>>
Django - Xadmin 组件(一)
查看>>
LeetCode OJ 之 Number of Digit One (数字1的个数)
查看>>
也谈如何获取真实正确的 Windows 系统版本号
查看>>
git基本操作
查看>>
Web for Pentester -- Directory traversal
查看>>
1.jdk安装和环境配置
查看>>
用caffe训练openpose过程中,出现异常
查看>>
POJ-2503 Babelfish Hash表
查看>>
java连接ibm mq
查看>>
oracle常用的符号用法
查看>>
理解爬虫原理
查看>>
bootstrap - 按钮,下拉菜单
查看>>
c++实验4
查看>>
C#中调用API函数RegisterHotKey注册多个系统热键
查看>>
【慢慢学Android】:5.短信拦截
查看>>
no.1
查看>>
第八章
查看>>