All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cvent.dropwizard.mybatis.mappers.HealthCheckMapper Maven / Gradle / Ivy

Go to download

An open source bridge layer so that you can use mybatis with dropwizard + other useful utility methods often used within an enterprise.

There is a newer version: 4.0.4
Show newest version
package com.cvent.dropwizard.mybatis.mappers;

import org.apache.ibatis.annotations.Select;

/**
 * A mybatis mapper for performing healthchecks
 */
public interface HealthCheckMapper {

    /**
     * Perform a healthcheck using provided select
     *
     * @return
     */
    @Select("/* MyBatis Health Check */ SELECT 1")
    int healthCheck();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy