Класс OAuth2FeignRequestInterceptor устарел в Spring Boot 2.3 - PullRequest
1 голос
/ 18 июня 2020

В нашей последней конфигурации безопасности воображаемого клиента у нас есть этот Bean:

    @Bean
    public RequestInterceptor oauth2FeignRequestInterceptor(
            ClientCredentialsResourceDetails oauth2RemoteResource) {
        return new OAuth2FeignRequestInterceptor(
                new DefaultOAuth2ClientContext(),
                oauth2RemoteResource
        );
    }

В весенней версии 2.3 OAuth2FeignRequestInterceptor устарел! Но мы не можем найти новый.

Кто-нибудь что-нибудь об этом знает?

...