| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- spring:
 
-   cloud:
 
-     nacos:
 
-       config:
 
-         password:
 
-         username:
 
-       discovery:
 
-         server-addr: 172.30.0.7:8848
 
-         service: jeecg-gateway
 
-         namespace:
 
-     gateway:
 
-       discovery:
 
-         locator:
 
-           enabled: true
 
-       globalcors:
 
-         cors-configurations:
 
-           '[/**]':
 
-             allowCredentials: true
 
-             allowedOrigins: "*"
 
-             allowedMethods: "*"
 
-             allowedHeaders: "*"
 
-       routes:
 
-       - id: jeecg-system
 
-         uri: lb://jeecg-system
 
-         predicates:
 
-           - Path=/jeecg-boot/**
 
-       - id: jeecg-bytedance-ad
 
-         uri: lb://jeecg-bytedance-ad
 
-         predicates:
 
-           - Path=/bytedance/ad/**
 
- # hystrix 信号量隔离,3秒后自动超时
 
- hystrix:
 
-   enabled: true
 
-   shareSecurityContext: true
 
-   command:
 
-     default:
 
-       execution:
 
-         isolation:
 
-           strategy: SEMAPHORE
 
-           thread:
 
-             timeoutInMilliseconds: 3000
 
- jeecg:
 
-   route:
 
-     config:
 
-       data-id: mate-gateway-router
 
-       group: DEFAULT_GROUP
 
-       data-type: yml
 
 
  |