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

com.yuweix.kuafu.dao.datasource.DataSourceContextHolder Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.dao.datasource;



/**
 * @author yuwei
 */
public class DataSourceContextHolder {
    private static final ThreadLocal HOLDER = new ThreadLocal<>();

    /**
     * 获取数据源名
     */
    public static String getDataSource() {
        return HOLDER.get();
    }

    /**
     * 设置数据源名
     */
    public static void setDataSource(String dataSourceName) {
        HOLDER.set(dataSourceName);
    }

    /**
     * 移除数据源名
     */
    public  static void removeDataSource() {
        HOLDER.remove();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy