Le filtre springSecurityFilterChain
:
- protège les ressources Web (URL)
- valide l'authentification
- redirige vers la page d'authentification
La présence dans un projet d'une classe qui étend AbstractSecurityWebApplicationInitializer crée le filtre springSecurityFilterChain.
public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplicationInitializer {
}
Spring Boot le fait automatiquement sans aucune configuration.