Получение информации о системе от Spring Boot Actuator - PullRequest
0 голосов
/ 23 марта 2019

У меня есть приложение SpringBoot.2.1.3.Релиз, обеспеченный JWT, я хочу добавить привод.Я добавил эту зависимость

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency> 

Я добавил эти свойства в файл application.properties

management.endpoints.web.exposure.include=health,info
management.endpoint.health.show-details=always

, когда я получаю доступ к /actuator Я получил этот ответ:

{
    "_links": {
        "self": {
            "href": "http://127.0.0.1:1133/tdk/actuator",
            "templated": false
        },
        "health": {
            "href": "http://127.0.0.1:1133/tdk/actuator/health",
            "templated": false
        },
        "health-component": {
            "href": "http://127.0.0.1:1133/tdk/actuator/health/{component}",
            "templated": true
        },
        "health-component-instance": {
            "href": "http://127.0.0.1:1133/tdk/actuator/health/{component}/{instance}",
            "templated": true
        },
        "info": {
            "href": "http://127.0.0.1:1133/tdk/actuator/info",
            "templated": false
        }
    }
}

но когда я получаю доступ к http://127.0.0.1:1133/tdk/actuator/info, я получаю только

{}

1 Ответ

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

Вам нужно добавить build-info цель для генерации информации о сборке. см. Документ здесь для получения дополнительной информации.

...