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

me.danwi.sqlex.spring.SpringDaoFactory Maven / Gradle / Ivy

There is a newer version: 0.18.0
Show newest version
package me.danwi.sqlex.spring;

import me.danwi.sqlex.core.DaoFactory;
import me.danwi.sqlex.core.RepositoryLike;

import javax.sql.DataSource;

public class SpringDaoFactory extends DaoFactory {
    public SpringDaoFactory(DataSource dataSource, Class repository) {
        super(
                new SpringManagedTransactionManager(
                        dataSource,
                        new SpringExceptionTranslator(dataSource)
                ),
                repository, new SpringExceptionTranslator(dataSource)
        );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy