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

com.github.yydf.struts.jdbc.SqlSessionFactory Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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