у нас все URL-адреса конечных точек начинаются с "/ api / **", но мы хотим использовать jwtFilterRequest только для URL ниже, а все другие URL-адреса должны давать allowall.
GET /api/users
POST /api/users
GET /api/users/{userId}
httpSecurity.cors().and().csrf().disable().authorizeRequests().antMatchers("/api/**").permitAll()
.and().authorizeRequests().anyRequest().authenticated()
.and().exceptionHandling().authenticationEntryPoint(jwtAuthenticationEntryPoint)
.and().sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
httpSecurity.addFilterBefore(jwtRequestFilter, BasicAuthenticationFilter.class);
Пожалуйста, помогите?
Заранее спасибо,