Получение «Страница ошибки Whitelabel» при открытии «/ привод / сопоставления» - PullRequest
0 голосов
/ 28 марта 2019

Я новичок в Spring-Cloud, поэтому я использую видеоурок, поэтому для чтения открытых конечных точек я пытался открыть http://localhost:8000/actuator/mappings, но у меня ничего не вышло, но URL / health дал мне следующий результат:

enter image description here

Вот код, написанный на стороне клиента:

@RefreshScope
@RestController
class MessageRestController {

  @Value("${message}")
  private String message;

  @RequestMapping("/message")
  String getMessage() {
      return this.message;
  }
 }

pom.xml:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.3.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.spring.cloud.reservation</groupId>
<artifactId>reservation-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>reservation-service</name>
<description>Demo project for Spring Boot</description>
<properties>
    <java.version>1.8</java.version>
    <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
</properties>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-rest</artifactId>
    </dependency>
   <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>${spring-cloud.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

Вот структура проекта клиента:

enter image description here

bootstrap.properties:

spring.application.name=reservation-service
spring.cloud.config.uri=http://localhost:8888

При выполнении сообщения на / refresh выдает: Ошибка не найдена

curl -d {} http://localhost:8000/actuator/refresh

enter image description here

версия баночки с пружинным приводом = 2.1.3

Ответы [ 3 ]

1 голос
/ 28 марта 2019

Default management.endpoints.web.exposure.include, info, health
Поскольку actuator/health и привод / информация предоставлены по умолчанию, вы получите информацию

management.endpoints.web.exposure.include = * // позволитвсе конечные точки, которые должны быть открыты

management.endpoints.web.exposure.include=health,info # Endpoint IDs that should be included or '*' for all.
management.endpoints.web.exposure.exclude= # Endpoint IDs that should be excluded or '*' for all.
management.endpoints.web.base-path=/actuator # Base path for Web endpoints. Relative to server.servlet.context-path or management.server.servlet.context-path if management.server.port is configured.
management.endpoints.web.path-mapping= # Mapping between endpoint IDs and the path that should expose them.

Защита конечной точки

management.endpoint.health.roles= # Roles used to determine whether or not a user is authorized to be shown details. When empty, all authenticated users are authorized. //for health

management.endpoint.health.show-details=always,never # When to show full health details.

Включение / отключение конечных точек

management.endpoint.(endpointName).enabled=true # Whether to enable the health endpoint.
e.g. management.endpoint.health.enabled=true
1 голос
/ 29 марта 2019

Spring boot 2.x :: только работоспособность и информация выставляются по умолчанию. Чтобы предоставить другую конечную точку привода, укажите имя конечной точки или добавьте следующую строку, чтобы показать все конечные точки.

management.endpoints.web.exposure.include: '*'

1 голос
/ 28 марта 2019

Начиная с Spring boot 2.x, все конечные точки привода отключены, за исключением нескольких нечувствительных конечных точек, таких как / health и / info по умолчанию.

Вы можете включить их, используя свойство management.endpoints.web.exposure.include=*

Пожалуйста, обратитесь здесь для более подробной информации.

...