cn.sylinx.hbatis.ext.mirage.Mirage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.ext.mirage;
import cn.sylinx.hbatis.ext.DaoSupport;
import cn.sylinx.hbatis.ext.mirage.repository.DaoService;
import cn.sylinx.hbatis.ext.mirage.repository.DaoSingleton;
public class Mirage {
public static DaoSupport getDaoSupport() {
return DaoSingleton.ME;
}
public static DaoService getDaoService() {
return getDaoSupport().getDaoService();
}
public static DaoService getDaoService(String datasourceName) {
return getDaoSupport().getDaoService(datasourceName);
}
}