SpringSecurity我开启了请求不需要认证为什么还是返回403jinz

服务器返回的信息:
"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();


}

直接改为http.authorizeRequests().anyRequest().permitAll();试试呢?