Я написал GET API с URL-адресом конечной точки: / service / open / v1 / test
В WebSecurityConfigurerAdapter мой httpSecurity настроен следующим образом:
httpSecurity.authorizeRequests().antMatchers("/service/open/v1" + "/**").permitAll()
.and().authorizeRequests().anyRequest().authenticated();
Но получается HttpStatus 403 при попадании в API.Пожалуйста, помогите.