Setup Spring security to redirect user to login page if not authenticated
问题 I have a Spring boot application with Spring security. My problem is similar to this one, but in my case I want to redirect the user to the login page if he's not authenticated when he tries to access any page of the application. The following image shows the architecture of the application: My config class looks like this: @EnableWebSecurity @Configuration public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override public void configure(HttpSecurity http) throws Exception {