0

In my Spring boot micro service application,I am using Zuul proxy as edge service in my API Gateway. I need to call external service which is not registered in eureka server(Non Micro Service Architecture). How Can I call that external service from my api gateway. (Thanks in advance)

1 Answers1

0

In your application.properties file you configure as below:

zuul.routes.external.path /external/**
zuul.routes.external.url http://urltoexternalservice.com/external
MohamedSanaulla
  • 6,112
  • 5
  • 28
  • 45