ожидаемый буквенный или числовой символ, но найденный, но найденный в Hystrix - PullRequest
0 голосов
/ 22 января 2019

Я разрабатываю Мониторинг микросервисов код по ссылке: https://howtodoinjava.com/spring-cloud/microservices-monitoring/. Когда я включаю * для management.endpoints.web.exposure.exclude. Spring Boot v 2.1.2.RELEASE и Cloud версия Greenwich.RC2.

ожидается буквенный или цифровой символ, но найден, но найден

application.yml

spring:
  application:
    name: api-gateway

server:
  port: 8010

eureka:
  instance:
    lease-renewal-interval-in-seconds: 5
    lease-expiration-duration-in-seconds: 2
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
    healthcheck:
      enabled: true
    lease:
      duration: 5

logging:
  level:
    com.self.sprintboot.learning.apigateway: DEBUG

management:
  endpoints:
    web:
      exposure:
        exclude: *
      base-path: /

enter image description here

...