
com.github.yydf.struts.jdbc.SqlSessionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of struts Show documentation
Show all versions of struts Show documentation
A simple, light Java WEB + ORM framework.
package com.github.yydf.struts.jdbc;
import javax.sql.DataSource;
import com.github.yydf.struts.util.Assert;
public class SqlSessionFactory {
private static SqlSession sessionImpl;
public static SqlSession getSession() {
Assert.notNull(sessionImpl);
return sessionImpl;
}
public static void createSession(DataSource ds) {
if (sessionImpl == null) {
sessionImpl = new SqlSession(ds);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy