为web.xml中的特定角色获取403
<security-constraint>
<display-name>security constraint</display-name>
<web-resource-collection>
<web-resource-name>Secured page</web-resource-name>
<url-pattern>/com/test/</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>USER</role-name>
</auth-constraint>
</security-constraint>
在命中.... / com / test /之前和之后都有一系列调用(在开发人员工具中选中),webapp返回403。当我使用“ / com / test / *”时,webapp可以工作。
所以我想跟踪它试图访问的确切上下文/页面/资源。有什么方法可以从web.xml角度进行跟踪吗?不知道是否有任何Servlet类可以在抛出403之前放一个调试点。