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

io.thundra.swark.jdbc.spring.monitoring.MonitoredNamedParameterJdbcTemplate Maven / Gradle / Ivy

package io.thundra.swark.jdbc.spring.monitoring;

import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;

import javax.sql.DataSource;

/**
 * @author serkan
 */
public class MonitoredNamedParameterJdbcTemplate extends NamedParameterJdbcTemplate {

    public MonitoredNamedParameterJdbcTemplate(DataSource dataSource) {
        super(new MonitoredJdbcTemplate(dataSource));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy