spring引导安全性不绕过登录页面url

tag5nh1u  于 2021-10-10  发布在  Java
关注(0)|答案(0)|浏览(178)

我使用oauth2作为安全令牌,但很少使用像这样的URL /login/welcome 我不想通过oauth2令牌访问它。我正在使用下面的代码,但这两种代码都适用 /login/welcome 它正在请求令牌并返回http状态401。

@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {

         http
             .authorizeRequests()
                 .antMatchers(HttpMethod.POST, "/login").permitAll()
                 .antMatchers(HttpMethod.GET, "/login").permitAll()
                 .antMatchers(HttpMethod.GET, "/welcome").permitAll()
                 .anyRequest().authenticated();
     }
}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题