如何在spring boot中的oauth2authenticationprocessingfilter末尾添加自定义安全筛选器?

kuhbmx9i  于 2021-09-30  发布在  Java
关注(0)|答案(0)|浏览(236)

我想在oauth2authentication处理过滤器之后添加自定义过滤器,该过滤器用于执行一些自定义身份验证。我该怎么做?我的资源服务器类如下所示:

@EnableResourceServer
@EnableWebSecurity
@Configuration
public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {

    @Override
    public void configure(HttpSecurity http) throws Exception {
        http
        .authorizeRequests()
        .antMatchers("/").permitAll()

        .antMatchers("/agent/**").access("#oauth2.hasScope('Chatagent-message')")

        .anyRequest().authenticated()
        .and().csrf().disable();

    }
}

暂无答案!

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

相关问题