There are 3 service:
- user-service
- eureka-discovery-service
- keycloak-authoriztaion-service
I have configured eureka server it's up and running and I have registered the user-service with: @EnableDiscoveryClient
application.properties(user-service)
spring.application.name=user-service
server.port=8040
eureka.instance.hostname=localhost
eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka
I can see the registered user-services it's okay for Spring Boot applications.
How can I register Keycloak into the Eureka Discovery Service?