在我的websecurityconfig文件中,我有以下内容:
.formLogin()
.loginPage("/api/players/authenticate")
.successHandler(authenticationSuccessHandler)
.permitAll()
.and()
出于某种原因,Spring会将GET重定向到此网址而不是重定向POST,从而导致我获得:
[org.springframework.web.servlet.PageNotFound] (default task-2) Request method 'GET' not supported
如何设置POST?