Merge pull request #337 from hapifhir/feature/spring-boot-actuator

Add actuator
This commit is contained in:
Patrick Werner
2022-04-13 13:52:06 +02:00
committed by GitHub
2 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
#Adds the option to go to eg. http://localhost:8080/actuator/health for seeing the running configuration
#see https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints
management:
endpoints:
web:
exposure:
include: "health"
spring:
main:
allow-circular-references: true