<security-constraint> <web-resource-collection> <web-resource-name>resouseName</web-resource-name> <url-pattern>/*</url-pattern> <http-method>PUT</http-method> <http-method>HEAD</http-method> <http-method>DELETE</http-method> <http-method>OPTIONS</http-method> <http-method>TRACE</http-method> </web-resource-collection> <auth-constraint /> </security-constraint>
时间: 2024-04-06 20:06:42 浏览: 61
web.xml详解(web-app_2_3.dtd)
4星 · 用户满意度95%
这是一个在 web.xml 文件中配置的安全约束,用来限制对某些资源的访问。其中,<web-resource-name> 表示对资源的描述名称,<url-pattern> 表示匹配的 URL 地址模式,<http-method> 表示被限制的 HTTP 请求方法。这段配置表示对于匹配到的 URL,PUT、HEAD、DELETE、OPTIONS、TRACE 这些 HTTP 请求方法都会被限制,同时没有设置授权约束,即任何人都无法访问。
阅读全文