我想在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();
}
}
暂无答案!
目前还没有任何答案,快来回答吧!