springsecrity配置文件如下配置可以正常登录。
http .requestMatchers().antMatchers("/", "/auth/login","/logout","/oauth/authorize")
.and()
.authorizeRequests()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.loginProcessingUrl("/auth/login")
.defaultSuccessUrl("/index")
.and().csrf().disable();
http.httpBasic().disable();
但是当 第二行中 http .requestMatchers().antMatchers("/", "/logout","/oauth/authorize")去掉"/auth/login" 提交登录的时候居然报404错误,有哪位大神知道原理吗