Reputation: 5962
Hi I'm a newbie to JHipster. I worked in wso tool. Hence, I would like to know if JHipster can support adding the external API (which is a non jhipster application) into the JHipster gateway.
Upvotes: 1
Views: 368
Reputation: 740
The JHipster gateway embeds a Zuul proxy that you can configure like this to define custom routes (including to external APIs):
zuul:
routes:
users:
path: /myroute/**
url: http://example.com/users_service
```
Have a look at the Spring Cloud docs for more information.
Upvotes: 1