Skip to content

Commit 154ddf0

Browse files
committed
11: Improve the readme.md
1 parent 5442981 commit 154ddf0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

readme.md

+2
Original file line numberDiff line numberDiff 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

spring-boot-cloud-api-gateway-routing/readme.md

+6-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)