23 lines
427 B
YAML
23 lines
427 B
YAML
server:
|
|
port: 8201
|
|
spring:
|
|
application:
|
|
name: mall-gateway
|
|
cloud:
|
|
gateway:
|
|
discovery:
|
|
locator:
|
|
enabled: true
|
|
lower-case-service-id: true #使用小写service-id
|
|
management: #开启SpringBoot Admin的监控
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: '*'
|
|
endpoint:
|
|
health:
|
|
show-details: always
|
|
logging:
|
|
level:
|
|
org.springframework.cloud.gateway: debug
|