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

io.github.afezeria.freedao.classic.runtime.DataSourceContextHolder Maven / Gradle / Ivy

package io.github.afezeria.freedao.classic.runtime;

/**
 * @author afezeria
 */
public class DataSourceContextHolder {

    private static final ThreadLocal CONTEXT = new ThreadLocal<>();

    public static void set(DS ds) {
        CONTEXT.set(ds);
    }

    public static DS get() {
        return CONTEXT.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy