我試圖設置安全約束反向。我想說的是,除了我指定的以外,所有頁面都需要登錄。我用:設置反向安全約束
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
但我不知道該怎麼說index.jsp不需要登錄。
雖然這是100%正確的,但是OP詢問web.xml部署描述符,並沒有指出他們正在使用spring-security。由於web.xml約束是在容器級別執行的,因此這兩種方法也不容易混合。 – 2011-01-30 13:36:50