updated UriResolverHealthCheck

This commit is contained in:
Francesco Mangiacrapa 2024-10-15 17:19:01 +02:00
parent e2b0020484
commit deca344022
1 changed files with 13 additions and 2 deletions

View File

@ -5,6 +5,9 @@ import java.util.Optional;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import org.eclipse.microprofile.health.HealthCheck;
import org.eclipse.microprofile.health.HealthCheckResponse;
@ -19,14 +22,22 @@ import org.eclipse.microprofile.health.HealthCheckResponse;
@Path("health")
public class UriResolverHealthCheck implements HealthCheck {
@GET
@Path("")
@Produces({ MediaType.TEXT_HTML, MediaType.APPLICATION_JSON })
public Response check() {
HealthCheckResponse hcr = call();
return Response.ok().entity(hcr).build();
}
/**
* Call.
*
* @return the health check response
*/
@Override
@GET
@Path("")
public HealthCheckResponse call() {
// return HealthCheckResponse.named("uri-resolver").up().build();