bootstrap.yml 337 B

1234567891011121314151617
  1. spring:
  2. application:
  3. name: smart-house-statistics
  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. register-with-eureka: true
  14. fetch-registry: true
  15. instance:
  16. prefer-ip-address: true