2016-07-05 27 views
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(); 

} 

すべてのヘルプに当たっていますか?

答えて

0

私はこのように無視するようにセキュリティのためのエンドポイントのブラックリストを追加するWebSecurity社コンテキストを使用して終了:

public void configure(WebSecurity web) throws Exception { 
    web 
    .ignoring() 
     .antMatchers("/metrics**") 
     .antMatchers("/health**") 
     .antMatchers("/logfile**") 
     .antMatchers("/systemcheck**"); 
} 
関連する問題