This component provides an API gateway. The API gateway is responsible for dispatch the requests to the corresponding REST endpoint (reverse proxy), load balancing, simple heart beat check as well as failure handling (with circuit breaker).
In current version, the SPA frontend is also integrated in the API gateway.
api.gateway.http.address
: host of the gateway, by default 0.0.0.0api.gateway.http.address.external
: external hostname of the gateway, by default localhostapi.gateway.http.port
: port of the gateway, by default 8787heartbeat.enable
: flag indicating whether heartbeat check is enabled, by default trueheartbeat.period
: interval of the heartbeat check, by default 60 seconds
mvn clean install