File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
spring-boot-cloud-api-gateway-routing Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ Spring boot microservice example with Eureka Server + Eureka Client + Spring Clo
2020 - Supports Resilience4J circuit breaker
2121 - Use of Resilience4J circuit breaker with FeignClient
2222 - ** Notification Service** : Notification microservice with basic feature
23+ - Eureka Client
24+ - OAuth2.0 Client
2325
2426## Checkout repository
2527
Original file line number Diff line number Diff line change @@ -23,9 +23,14 @@ spring:
2323 uri: lb://authentication-service
2424 predicates:
2525 - Path=/oauth/**
26+ - id: notification-service
27+ uri: lb://notification-service
28+ predicates:
29+ - Path=/notification/**
2630
2731```
2832
2933 - any request start with "/user/* " will be forwarded to user service
3034 - any request start with "/order/* " will be forwarded to order service
31- - any request start with "/oauth/* " will be forwarded to authentication service
35+ - any request start with "/oauth/* " will be forwarded to authentication service
36+ - any request start with "/notification/* " will be forwarded to notification service
You can’t perform that action at this time.
0 commit comments