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

com.youta8.frame.common.context.UserContext Maven / Gradle / Ivy

There is a newer version: 2.4.4
Show newest version
package com.youta8.frame.common.context;

import com.youta8.frame.common.entity.LoginUser;

/**
 * 用户上下文
 *
 * @author youta
 */
public class UserContext {

	private static ThreadLocal userHolder = new ThreadLocal<>();

	public static void setUser(LoginUser loginUser) {
		userHolder.set(loginUser);
	}

	public static LoginUser getUser() {
		return userHolder.get();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy