For a microservice to be accessible through the Edge Service:
Ensure the microservice is registered with Eureka (if using service discovery)
Create an API route pointing to the microservice
Configure the microservice to accept requests from the Edge Service
Set up appropriate security between the Edge Service and the microservice
Example configuration for a microservice to work with the Edge Service:
Copy
# In your microservice's application.ymlspring: application: name: inventory-service # Must match the service name in the lb:// URIeureka: client: service-url: defaultZone: https://localhost:8761/eureka register-with-eureka: true