You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Spring Boot with both Jersey and Actuator, the health endpoint only allows one health group to have an additional-path configured. All other additional paths are ignored except for the first that appears in the configuration file.
Only /health1 will be available as a JAX-RS Resource. The available health endpoints will be:
/actuator/health/liveness
/actuator/health/readiness
/health1
The text was updated successfully, but these errors were encountered:
kent-rosenkoetter-at-nordstrom
changed the title
Only one health group can be exposed using management.endpoint.health.group.xxx.additional-path: server:/newpath when using Jersey.
Only one health group can be exposed using management.endpoint.health.group.xxx.additional-path=server:/newpath when using Jersey.
Jul 5, 2023
wilkinsona
changed the title
Only one health group can be exposed using management.endpoint.health.group.xxx.additional-path=server:/newpath when using Jersey.
Only one health group can be exposed using management.endpoint.health.group.xxx.additional-path=server:/newpath when using Jersey
Jul 7, 2023
spring-boot/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyHealthEndpointAdditionalPathResourceFactory.java
Lines 50 to 64 in f978051
When using Spring Boot with both Jersey and Actuator, the health endpoint only allows one health group to have an
additional-path
configured. All other additional paths are ignored except for the first that appears in the configuration file.Only /health1 will be available as a JAX-RS Resource. The available health endpoints will be:
/actuator/health/liveness
/actuator/health/readiness
/health1
The text was updated successfully, but these errors were encountered: