0
我正在嘗試與JWT一起開發Spring Security項目。 我想用Spring Security(無JWT令牌)訪問Login api。但是通過下面的配置,每次(對於登錄api),它正在檢查JWT令牌給我403錯誤。Spring安全與JWT
以下是我的WebSecurityConfig。
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private JwtAuthFilter jwtAuthFilter;
@Autowired
private TokenAuthenticationService jwtAuthenticationProvider;
@Override
public void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(jwtAuthenticationProvider);
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().ignoringAntMatchers("/api/v1/login");
http.csrf().disable();
http.authorizeRequests()
.antMatchers("/api/v1/login")
.permitAll()
.and()
.addFilterBefore(jwtAuthFilter, UsernamePasswordAuthenticationFilter.class);
}
}
在此先感謝
感謝您的答覆。有沒有像(ignoringAntMatchers)乾淨的方式,以便我可以檢查配置(HttpSecurity http)? – kedar
不確定螞蟻遊行者,但如果你只需要配置登錄路徑,我已經編輯了答覆,並在那裏添加了來自docs的示例。 –