我想使用spring安全依赖项来验证我的RESTAPI。我想在netty服务器上的一个React式应用程序中使用带有KeyClope的基本身份验证。
使用Spring Security 和KeyClope服务器url可以进行基本身份验证吗?
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
@RestController
public class abc{
@GetMapping(value = "/hello", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public Flux<String> hello() {
return Flux.just("hello");
}
}
application.properties-类似这样的内容(如何在此处配置KeyClope的基本身份验证?)
spring.security.oauth2.client.registration.keycloak.client-id=myClient
暂无答案!
目前还没有任何答案,快来回答吧!