bootstrap.yml 302 B

1234567891011121314151617
  1. spring:
  2. application:
  3. name: smart-house-device-gateway
  4. # 配置中心
  5. cloud:
  6. config:
  7. uri: ${config-url}
  8. # Eureka 客户端配置
  9. eureka:
  10. client:
  11. service-url:
  12. defaultZone: http://smart-house-eureka:7001/eureka
  13. instance:
  14. prefer-ip-address: true
  15. server:
  16. port: 9081