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)
Asked
Active
Viewed 1,279 times
1 Answers
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
-
Thanks @mohamed . Its working fine . I have tried this. – Rajasekar Sambandam Nov 03 '17 at 09:38