我使用的是SpringOAuthClient 5.2.4.RELEASE版本,通过使用Spring安全https://docs.spring.io/spring-security/site/docs/current/reference/html5/#oauth2Client-authorized-manager-provider的文档链接
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository;
import org.springframework.security.oauth2.client.web.reactive.function.client.ServerOAuth2AuthorizedClientExchangeFilterFunction;
import org.springframework.security.oauth2.client.web.server.ServerOAuth2AuthorizedClientRepository;
import org.springframework.web.reactive.function.client.ExchangeFilterFunction;
import org.springframework.web.reactive.function.client.WebClient;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import reactor.core.publisher.Mono;
@AllArgsConstructor
@Configuration
@Slf4j
public class WebClientConfig {
@Bean("AuthProvider")
WebClient webClient(ReactiveClientRegistrationRepository clientRegistrations, ServerOAuth2AuthorizedClientRepository authorizedClients) {
ServerOAuth2AuthorizedClientExchangeFilterFunction oauth = new ServerOAuth2AuthorizedClientExchangeFilterFunction(
clientRegistrations,
authorizedClients);
oauth.setDefaultOAuth2AuthorizedClient(true);
oauth.setDefaultClientRegistrationId("AuthProvider");
return WebClient.builder()
.filter(oauth)
.filter(this.logRequest())
.build();
}
private ExchangeFilterFunction logRequest() {
return ExchangeFilterFunction.ofRequestProcessor(clientRequest -> {
log.info("Request: [{}] {}", clientRequest.method(), clientRequest.url());
log.debug("Payload: {}", clientRequest.body());
return Mono.just(clientRequest);
});
}
Application.yaml
security:
oauth2:
client:
provider:
AuthProvider:
token-uri: ${tokenpath<read from environment variable>}
registration:
AuthProvider:
authorization-grant-type: client_credentials
client-id: ${<read from environment variable>}
client-secret: ${<read from environment variable>}
获取以下错误
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method webClient in com.sample.config.WebClientConfig required a bean of type 'org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository' in your configuration.
如果我错过了任何配置,因为没有从堆栈溢出的其他问题中获得任何具体帮助,请让我知道
5条答案
按热度按时间6psbrbz91#
你的Spring Boot配置很完美。
**问题根本原因:问题出在应用程序.yaml中。**可能是配置错误或不是从环境中挑选的。
注意:
ReactiveClientRegistrationRepository
Bean只有在客户端配置了OAuth2应用程序所有者详细信息时才会创建。我从start.spring.io创建了一个新项目,并在其中使用了您的配置。
在使用您的配置运行项目后,我也面临着同样的问题。
错误日志:
然后,我发现我没有在Applation.yml文件中配置属性。
我一配置,我的应用程序就开始工作了。
我使用的是SpringBoot 2.3.1.RELEASE和OAuth2Client版本5.3.3。
我的pom.xml:
我的客户端GitHub应用程序.yml的注册属性:
您更新的WebClientConfig@Configuration 类:
成功日志:
gdx19jrr2#
我使用的是Spring Boot 2.3.1版本。我也遇到了同样的问题,我的pom.xml在我的pom.xml中包含了这两个依赖项
我删除了以下依赖项,这对我起到了作用:
这并不是说这会解决你的麻烦,但这也可能是你的依赖冲突问题。
另一个帖子让我走上了正轨:Reactive OAuth2 with Spring Security 5.3.2 ReactiveClientRegistrationRepository bean could not be found
ee7vknir3#
我使用@anishB的配置。建议作为答案,但仍收到错误:
因此,我不得不在Spring2.3.1.RELEASE中使用这些依赖项:
这是
WebClientConfig
类:一切都很好,但对我来说,为什么@AnishB的解决方案是一个问题。对我不管用?!
kse8i1jr4#
ReactiveClientRegistrationRepository
随Reactive stack (netty)
一起提供,不随Servlet stack (tomcat)
一起提供如果您
pom.xml
包含spring-boot-starter-web
,Spring会理解您使用的是Servlet stack
,它将加载ClientRegistrationRepository
而不是ReactiveClientRegistrationRepository
要创建
WebClient
的Bean,您可以使用两种解决方案:方案一:
从
pom.xml
中删除spring-boot-starter-web
,这样Spring就知道您在Reactive stack
中方案二:
将
spring-boot-starter-web
保存在pom.xml
中ifmq2ha25#
在我的例子中,我在Spring-Batch应用程序
(WebApplicationType.NONE)
中使用了WebClient
。因此没有找到Servlet上下文,因此我必须自己配置ClientRegistrationRepository
、OAuth2AuthorizedClientService
、OAuth2AuthorizedClientManager
。并增加了以下依赖项: