Problem Scenario
I\'m currently working on the login page of my application which is based on Spring boot and related Spring projects (like security
try to make login less restrictive . by adding the following to your security configuration:
http .authorizeRequests() .antMatchers("/login").permitAll() ...
Original thread