Spring 引导 2.6 执行器信息
Spring boot 2.6 actuator info
我正在使用执行器,在 application.properties 文件中我有以下字段
management.endpoints.web.exposure.include=health,info
management.endpoint.info.enabled=true
management.info.defaults.enabled=true
当我调用 url / 执行器时,我看到
{"_links":{"self":{"href":"https://localhost:8443/actuator","templated":false},"health":{"href":"https://localhost:8443/actuator/health","templated":false},"health-path":{"href":"https://localhost:8443/actuator/health/{*path}","templated":true},"info":{"href":"https://localhost:8443/actuator/info","templated":false}}}
但是当我调用/执行器/信息时 returns 我{}
我做错了什么
谢谢
我解决了问题,只需在application.properties文件中添加
management.info.env.enabled=true
以及
的价值
info.app.name=@project.name@
由/actuator/info返回
我正在使用执行器,在 application.properties 文件中我有以下字段
management.endpoints.web.exposure.include=health,info
management.endpoint.info.enabled=true
management.info.defaults.enabled=true
当我调用 url / 执行器时,我看到
{"_links":{"self":{"href":"https://localhost:8443/actuator","templated":false},"health":{"href":"https://localhost:8443/actuator/health","templated":false},"health-path":{"href":"https://localhost:8443/actuator/health/{*path}","templated":true},"info":{"href":"https://localhost:8443/actuator/info","templated":false}}}
但是当我调用/执行器/信息时 returns 我{}
我做错了什么
谢谢
我解决了问题,只需在application.properties文件中添加
management.info.env.enabled=true
以及
的价值info.app.name=@project.name@
由/actuator/info返回