Last active
December 10, 2021 12:31
-
-
Save j-tim/d1f21ed9ede36ff4bcc32f80bdc74d61 to your computer and use it in GitHub Desktop.
Spring Boot 2.6.x Actuator Info contributor complete config example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring: | |
application: | |
name: example-app | |
management: | |
info: | |
env: | |
enabled: true | |
endpoints: | |
web: | |
exposure: | |
include: info | |
info: | |
application: | |
name: ${spring.application.name} | |
description: Very cool Spring Boot application | |
version: '@project.version@' | |
spring-cloud-version: '@spring-cloud.version@' | |
spring-boot-version: '@project.parent.version@' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment