com.github.arteam.jdbi3.JdbiHealthCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-jdbi3 Show documentation
Show all versions of dropwizard-jdbi3 Show documentation
Integration between Dropwizard and JDBI3
package com.github.arteam.jdbi3;
import com.codahale.metrics.health.HealthCheck;
import io.dropwizard.db.TimeBoundHealthCheck;
import io.dropwizard.util.Duration;
import org.jdbi.v3.core.Handle;
import org.jdbi.v3.core.Jdbi;
import java.util.concurrent.ExecutorService;
/**
* @author Artem Prigoda
* @since 28.07.16
*/
public class JdbiHealthCheck extends HealthCheck {
private final Jdbi jdbi;
private final String validationQuery;
private final TimeBoundHealthCheck timeBoundHealthCheck;
public JdbiHealthCheck(ExecutorService executorService, Duration duration, Jdbi dbi, String validationQuery) {
this.jdbi = dbi;
this.validationQuery = validationQuery;
this.timeBoundHealthCheck = new TimeBoundHealthCheck(executorService, duration);
}
@Override
protected Result check() throws Exception {
return timeBoundHealthCheck.check(() -> {
try (Handle handle = jdbi.open()) {
handle.execute(validationQuery);
return Result.healthy();
}
});
}
}