| 1234567891011121314151617 |
- spring:
- application:
- name: smart-house-device-gateway
- # 配置中心
- cloud:
- config:
- uri: ${config-url}
- # Eureka 客户端配置
- eureka:
- client:
- service-url:
- defaultZone: http://smart-house-eureka:7001/eureka
- instance:
- prefer-ip-address: true
- server:
- port: 9081
|