28 lines
584 B
YAML
28 lines
584 B
YAML
server:
|
|
port: 8888
|
|
|
|
spring:
|
|
application:
|
|
name: gateway-service
|
|
|
|
cloud:
|
|
gateway:
|
|
discovery:
|
|
locator:
|
|
enabled: true # 允许通过服务名自动路由
|
|
lower-case-service-id: true
|
|
routes:
|
|
- id: user-service
|
|
uri: lb://user-service
|
|
predicates:
|
|
- Path=/users/**
|
|
- id: product-service
|
|
uri: lb://product-service
|
|
predicates:
|
|
- Path=/products/**
|
|
|
|
eureka:
|
|
client:
|
|
service-url:
|
|
defaultZone: http://localhost:8761/eureka
|