作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 webflux 和 keycloak 构建 OIDC 客户端。我的 spring 应用程序无法启动,因为它找不到下面的 bean:
Consider defining a bean of type 'org.springframework.security.oauth2.client.OAuth2AuthorizedClientService' in your configuration.
dependencies {
compile "org.springframework.boot:spring-boot-starter-webflux:2.0.3.RELEASE"
compile "org.springframework.security:spring-security-oauth2-client"
compile "org.springframework.security:spring-security-oauth2-jose"
compile "org.springframework.boot:spring-boot-devtools"
compile group: 'org.keycloak', name: 'keycloak-services', version: '4.0.0.Final'
compile group: 'org.keycloak', name: 'keycloak-admin-client', version: '4.0.0.Final'
compile "org.projectlombok:lombok"
compile group: 'org.jboss.resteasy', name: 'resteasy-jackson2-provider', version: '4.0.0.Beta4'
testCompile('org.springframework.boot:spring-boot-starter-test')
}
spring:
security:
oauth2:
client:
registration:
google:
client-id: your-app-client-id
client-secret: your-app-client-secret
facebook:
client-id: your-app-client-id
client-secret: your-app-client-secret
keycloak:
provider: keycloak
client-id: auth-api
client-secret: 727bea9d-6e01-433a-960b-83ac5d939adf
client-name: auth-api
client-authentication-method: basic
authorization-grant-type: authorization_code
redirect-uri-template: '{baseUrl}/login/oauth2/code/{registrationId}'
scope:
- openid
- profile
- email
provider:
keycloak:
authorization-uri: http://70.314.280.xxx/auth/realms/master/protocol/openid-connect/auth
token-uri: http://70.314.280.xxx/auth/realms/master/protocol/openid-connect/token
user-info-uri: http://70.314.280.xxx/auth/realms/master/protocol/openid-connect/userinfo
jwk-set-uri: http://70.314.280.xxx/auth/realms/master/protocol/openid-connect/certs
user-name-attribute: preferred_username
最佳答案
我今天遇到了同样的问题,像往常一样使用 Spring + IntelliJ 调试源代码非常容易,原因是这行代码:
map.from(properties::getRedirectUri).to(builder::redirectUriTemplate);
redirect-uri-template
但是
redirect-uri
在你的 yaml 文件中。我按照教程并粘贴了他们的 yaml 文件后陷入了这个问题。
关于java - Spring boot 找不到 bean OAuth2AuthorizedClientService,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51180856/
我是一名优秀的程序员,十分优秀!