The {@link WebSecurity} is created by {@link WebSecurityConfiguration}to create the {@link FilterChainProxy} known as the Spring Security FilterChain (springSecurityFilterChain). The springSecurityFilterChain is the {@link Filter} that the {@link DelegatingFilterProxy} delegates to.
Customizations to the {@link WebSecurity} can be made by creating a{@link WebSecurityConfigurer} or more likely by overriding{@link WebSecurityConfigurerAdapter}.
@see EnableWebSecurity @see WebSecurityConfiguration @author Rob Winch @since 3.2
|
|