com.cvent.dropwizard.mybatis.sessionbuilder.SqlSessionFactoryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-mybatis Show documentation
Show all versions of dropwizard-mybatis Show documentation
An open source bridge layer so that you can use mybatis with dropwizard + other useful utility methods often used within an enterprise.
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