我将 Tomcat 用于我的 Struts2 应用程序。具有web.xml
某些条目,如下所示:
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted methods</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>PUT</http-method>
<http-method>DELETE</http-method>
<http-method>TRACE</http-method>
</web-resource-collection>
<auth-constraint />
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>no_access</web-resource-name>
<url-pattern>/jsp/*</url-pattern>
</web-resource-collection>
<auth-constraint/>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>no_access</web-resource-name>
<url-pattern>/myrrunner/*</url-pattern>
</web-resource-collection>
<auth-constraint/>
</security-constraint>
如何将上述列入黑名单的部分更改为仅使用列入白名单的部分...例如,我需要将其他方法列入白名单,而不是 blacklisting PUT
、DELTE
http 方法,但我不确定将它们列入白名单的语法以及将它们列入白名单的方法。
对于我上面的web.xml
片段,如果有人可以为我提供上面的 whitelisitng 对应部分,我将不胜感激xml
。
编辑:另外,我将如何真正验证解决方案是否有效?
谢谢