MvcEndpointsresponsible for reading configurations endpoints.{name}.pathand somehow according to the method afterPropertiesSet:
for (Endpoint<?> endpoint : delegates) {
if (isGenericEndpoint(endpoint.getClass()) && endpoint.isEnabled()) {
EndpointMvcAdapter adapter = new EndpointMvcAdapter(endpoint);
String path = this.applicationContext.getEnvironment()
.getProperty("endpoints." + endpoint.getId() + ".path");
if (path != null) {
adapter.setPath(path);
}
this.endpoints.add(adapter);
}
}
Failure to install endpoints.health.path, as it isGenericEndpoint(...)returns falsefor HealthEndpoint. Maybe this is a mistake or something like that.
: -, 1.3.3.RELEASE. , /ping/me .