审查视图

src/main/resources/bootstrap-dev.yml 617 字节
二条 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
server:
  port: 12001
spring:
  application:
    name: company-consumer
  sleuth:
    web:
      client:
        enabled: true
    sampler:
      probability: 1.0
  zipkin:
    base-url: http://192.168.0.252:9411/
info:
  app:
    name: Company Service
    description: 提供工商用户基础服务
management:
  endpoints:
    web:
      exposure:
        include: "*"
  endpoint:
    shutdown:
      enabled: true
eureka:
  instance:
    prefer-ip-address: true
  client:
    serviceUrl:
      defaultZone: http://192.168.0.252:8101/eureka/
    healthcheck:
      enabled: true
feign:
  hystrix:
    enabled: true