0
私のWebSecurityConfigurerAdapterは、いくつかのフィルタの背後にある "/ secured /"コンテキストに物事を入れようとしています。ここでSpringセキュリティWebSecurityConfigにはセキュリティ保護されたゾーンと保護されていないゾーンが必要です
は、私がこれまで持っているものだが、すべてがTokenFilter
protected void configure(HttpSecurity http) throws Exception {
http.antMatcher("/secured/**").addFilterBefore(new TokenAuthenticationFilter(tokenAuthService, environment),
ExceptionTranslationFilter.class).
addFilterBefore(new RequestContentBufferFilter(), TokenAuthenticationFilter.class)
.antMatcher("/**").anonymous()
.and().csrf().disable();
}
すべてのヘルプに当たっていますか?