我想限制带有路径 /rest/* 的域仅用于 GET 请求。所以我在我的 web.xml 中声明它:
<security-constraint>
<web-resource-collection>
<web-resource-name>All</web-resource-name>
<url-pattern>/rest/*</url-pattern>
<http-method>GET</http-method>
</web-resource-collection>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Auth</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>Admin</role-name>
</auth-constraint>
</security-constraint>
但是,当对(例如)“/rest/add”进行 POST 请求时,Web 容器会接受并提交 POST 请求。为什么呢?