#spring #rest #spring-boot #spring-mvc #spring-boot-actuator
#spring #rest #пружинная загрузка #spring-mvc #привод загрузки пружины
Вопрос:
У меня есть приложение SpringBoot. 2.1.3.RELEASE, защищенное 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:
Вам нужно добавить build-info
цель для генерации информации о сборке. смотрите документ здесь для получения дополнительной информации.