服务器返回的信息:
"timestamp": "2019-06-19 14:36:42",
"status": 403,
"error": "Forbidden",
"message": "Forbidden",
"path": "/login/login"
configure(HttpSecurity)代码:
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/login/login").permitAll();
}