hi I\'m trying to follow a simple example about doing a simple login form page that i found in this page http://docs.spring.io/autorepo/docs/spring-security/4.0.x/guid
http://docs.spring.io/autorepo/docs/spring-security/4.0.x/guid
Worked for me only after added the following:
protected void configure(HttpSecurity http) throws Exception { ... http.csrf().csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse()); ... }