我下面這個教程: http://www.mkyong.com/spring-security/spring-security-hello-world-example/Spring Security的過濾器有多個URL攔截映射
在spring-security-xml
<http auto-config="true">
<intercept-url pattern="/welcome*" access="ROLE_USER" />
</http>
而在web.xml中,我們必須定義實際濾波器
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>
org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
所以我沒有得到這個,我們在兩個地方將截取映射到2個URL。到/welcome*
和/*
。爲什麼我們需要這兩個?我在這裏錯過了什麼嗎?
好的和徹底的答案 - 必須對OP有幫助。 –
謝謝你的好話! –
很棒的回答。當一個URL匹配多個過濾器鏈映射時會發生什麼。第一個是唯一使用的嗎? –