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

com.fly.jdbc.SqlFlyFactory Maven / Gradle / Ivy

package com.fly.jdbc;

/**
 * Fly的工厂类
 * @author kongyongshun
 *
 */
public class SqlFlyFactory {

	private static ThreadLocal SFTL = new ThreadLocal();

	/**
	 * 返回当前线程所绑定的SqlFly对象
	 * @return v
	 */
	public static SqlFly getSqlFly() {
		if (SFTL.get() == null) {
			SFTL.set(new SqlFly());
		}
		return SFTL.get();
	}
	

	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy