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

com.cvent.dropwizard.mybatis.sessionbuilder.SqlSessionFactoryProvider 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.sessionbuilder;

import org.apache.ibatis.session.SqlSessionFactory;

/**
 * An object that can produce SqlSessionFactory instances
 */
public interface SqlSessionFactoryProvider {

    /**
     * Use an environment name to produce an instance of SqlSessionFactory
     * @param environmentName
     * @return
     */
    SqlSessionFactory getSqlSessionFactory(String environmentName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy