File tree 2 files changed +8
-1
lines changed
spring-boot-cloud-api-gateway-routing
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
20
20
- Supports Resilience4J circuit breaker
21
21
- Use of Resilience4J circuit breaker with FeignClient
22
22
- ** Notification Service** : Notification microservice with basic feature
23
+ - Eureka Client
24
+ - OAuth2.0 Client
23
25
24
26
## Checkout repository
25
27
Original file line number Diff line number Diff line change @@ -23,9 +23,14 @@ spring:
23
23
uri: lb://authentication-service
24
24
predicates:
25
25
- Path=/oauth/**
26
+ - id: notification-service
27
+ uri: lb://notification-service
28
+ predicates:
29
+ - Path=/notification/**
26
30
27
31
```
28
32
29
33
- any request start with "/user/* " will be forwarded to user service
30
34
- 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