Developer404
Developer404

Reputation: 5962

External API Support in JHipster

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

Answers (1)

Pierre Besson
Pierre Besson

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

Related Questions