Permissions check, traffic restrictions service. Authenticating and limiting the requests from api-gateway
, create JWT and return to api-gateway
. You can specify which gateway-helper
to go through manager-service
, and configure the request to use the default gateway-helper
or the customized gateway-helper
for authentication and traffic restriction. At the same time, the service does not need to be restarted after the modification.
- Add a custom
gateway-helper
demo
- This service is an eureka client service. To run in local, we need to cooperate with
eureka-server
, and the online operation needs to cooperate withgo-register-server
. - Need to cooperate with
api-gateway
to complete the gateway functions such as authentication, rateLimit.
- run
eureka-server
- run
mysql
,ensure that the database table ofiam_service
has been initialized - Go to the project directory and run
mvn spring-boot:run
go-register-server
: Registration serviceconfig-server
: Configuration servicemysql
:iam_service
databaseredis
: cache
Pull requests are welcome! Follow to know for more information on how to contribute.
- Need to cooperate with
api-gateway
to complete the gateway functions such as authentication, traffic restriction.