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

cn.sylinx.hbatis.ext.xmapper.repository.DaoSingleton Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.ext.xmapper.repository;

import cn.sylinx.hbatis.ext.AbstractDaoSingleton;
import cn.sylinx.hbatis.ext.xmapper.spi.XmapperServiceManager;

public class DaoSingleton extends AbstractDaoSingleton {

	public static final DaoSingleton ME = new DaoSingleton();

	@Override
	protected String getDefaultDatasourceName() {
		return XmapperServiceManager.getXmapperService().getDatasourceName();
	}

	@Override
	protected DaoService createDaoService(String datasourceName) {
		return new DaoServiceImpl(new RepositoryImpl(datasourceName));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy