@ReactiveFeignClient(name = "service.b",configuration = CustomConfiguration.class)
public interface FeingConfiguration {
@PostMapping("/api/students/special")
public Flux<Student> getAllStudents(@RequestBody Flux<SubjectStudent> lista);
}
Помогите, как мне добавить базовую c аутентификацию в мой заголовок, который у меня есть в сервисе: service.b. У меня есть класс CustomConfiguration.class, но он мне не позволяет, у меня 401 авторизация не удалась
@Configuration
public class CustomConfiguration {
@Bean
public BasicAuthRequestInterceptor basic() {
return new BasicAuthRequestInterceptor("user","user") ;
}