Class FilterChainProxy
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.security.web.FilterChainProxy
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
public class FilterChainProxy extends org.springframework.web.filter.GenericFilterBeanDelegatesFilterrequests to a list of Spring-managed filter beans. As of version 2.0, you shouldn't need to explicitly configure aFilterChainProxybean in your application context unless you need very fine control over the filter chain contents. Most cases should be adequately covered by the default<security:http />namespace configuration options.The
FilterChainProxyis linked into the servlet container filter chain by adding a standard SpringDelegatingFilterProxydeclaration in the applicationweb.xmlfile.Configuration
As of version 3.1,
FilterChainProxyis configured using a list ofSecurityFilterChaininstances, each of which contains aRequestMatcherand a list of filters which should be applied to matching requests. Most applications will only contain a single filter chain, and if you are using the namespace, you don't have to set the chains explicitly. If you require finer-grained control, you can make use of the<filter-chain>namespace element. This defines a URI pattern and the list of filters (as comma-separated bean names) which should be applied to requests which match the pattern. An example configuration might look like this:<bean id="myfilterChainProxy" class="org.springframework.security.web.FilterChainProxy"> <constructor-arg> <util:list> <security:filter-chain pattern="/do/not/filter*" filters="none"/> <security:filter-chain pattern="/**" filters="filter1,filter2,filter3"/> </util:list> </constructor-arg> </bean>The names "filter1", "filter2", "filter3" should be the bean names ofFilterinstances defined in the application context. The order of the names defines the order in which the filters will be applied. As shown above, use of the value "none" for the "filters" can be used to exclude a request pattern from the security filter chain entirely. Please consult the security namespace schema file for a full list of available configuration options.Request Handling
Each possible pattern that the
FilterChainProxyshould service must be entered. The first match for a given request will be used to define all of theFilters that apply to that request. This means you must put most specific matches at the top of the list, and ensure allFilters that should apply for a given matcher are entered against the respective entry. TheFilterChainProxywill not iterate through the remainder of the map entries to locate additionalFilters.FilterChainProxyrespects normal handling ofFilters that elect not to callFilter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain), in that the remainder of the original orFilterChainProxy-declared filter chain will not be called.Request Firewalling
AnHttpFirewallinstance is used to validate incoming requests and create a wrapped request which provides consistent path values for matching against. SeeStrictHttpFirewall, for more information on the type of attacks which the default implementation protects against. A custom implementation can be injected to provide stricter control over the request contents or if an application needs to support certain types of request which are rejected by default.Note that this means that you must use the Spring Security filters in combination with a
FilterChainProxyif you want this protection. Don't define them explicitly in yourweb.xmlfile.FilterChainProxywill use the firewall instance to obtain both request and response objects which will be fed down the filter chain, so it is also possible to use this functionality to control the functionality of the response. When the request has passed through the security filter chain, theresetmethod will be called. With the default implementation this means that the original values ofservletPathandpathInfowill be returned thereafter, instead of the modified ones used for security pattern matching.Since this additional wrapping functionality is performed by the
FilterChainProxy, we don't recommend that you use multiple instances in the same filter chain. It shouldn't be considered purely as a utility for wrapping filter beans in a singleFilterinstance.Filter Lifecycle
Note the
Filterlifecycle mismatch between the servlet container and IoC container. As described in theDelegatingFilterProxyJavadocs, we recommend you allow the IoC container to manage the lifecycle instead of the servlet container.FilterChainProxydoes not invoke the standard filter lifecycle methods on any filter beans that you add to the application context.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceFilterChainProxy.FilterChainValidator
-
Constructor Summary
Constructors Constructor Description FilterChainProxy()FilterChainProxy(java.util.List<SecurityFilterChain> filterChains)FilterChainProxy(SecurityFilterChain chain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()voiddoFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain)java.util.List<SecurityFilterChain>getFilterChains()java.util.List<javax.servlet.Filter>getFilters(java.lang.String url)Convenience method, mainly for testing.voidsetFilterChainValidator(FilterChainProxy.FilterChainValidator filterChainValidator)Used (internally) to specify a validation strategy for the filters in each configured chain.voidsetFirewall(HttpFirewall firewall)Sets the "firewall" implementation which will be used to validate and wrap (or potentially reject) the incoming requests.voidsetRequestRejectedHandler(RequestRejectedHandler requestRejectedHandler)Sets theRequestRejectedHandlerto be used for requests rejected by the firewall.java.lang.StringtoString()
-
-
-
Constructor Detail
-
FilterChainProxy
public FilterChainProxy()
-
FilterChainProxy
public FilterChainProxy(SecurityFilterChain chain)
-
FilterChainProxy
public FilterChainProxy(java.util.List<SecurityFilterChain> filterChains)
-
-
Method Detail
-
afterPropertiesSet
public void afterPropertiesSet()
- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Overrides:
afterPropertiesSetin classorg.springframework.web.filter.GenericFilterBean
-
doFilter
public void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain) throws java.io.IOException, javax.servlet.ServletException- Throws:
java.io.IOExceptionjavax.servlet.ServletException
-
getFilters
public java.util.List<javax.servlet.Filter> getFilters(java.lang.String url)
Convenience method, mainly for testing.- Parameters:
url- the URL- Returns:
- matching filter list
-
getFilterChains
public java.util.List<SecurityFilterChain> getFilterChains()
- Returns:
- the list of
SecurityFilterChains which will be matched against and applied to incoming requests.
-
setFilterChainValidator
public void setFilterChainValidator(FilterChainProxy.FilterChainValidator filterChainValidator)
Used (internally) to specify a validation strategy for the filters in each configured chain.- Parameters:
filterChainValidator- the validator instance which will be invoked on during initialization to check theFilterChainProxyinstance.
-
setFirewall
public void setFirewall(HttpFirewall firewall)
Sets the "firewall" implementation which will be used to validate and wrap (or potentially reject) the incoming requests. The default implementation should be satisfactory for most requirements.- Parameters:
firewall-
-
setRequestRejectedHandler
public void setRequestRejectedHandler(RequestRejectedHandler requestRejectedHandler)
Sets theRequestRejectedHandlerto be used for requests rejected by the firewall.- Parameters:
requestRejectedHandler- theRequestRejectedHandler- Since:
- 5.2
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-