主题
用户工具类
通过用户工具类,可以获取到基础参数信息
使用场景
- 获取用户访问的ip地址
- 获取用户登录后的
userId
- 获取用户的昵称
- 获取是否管理员
接口说明
接口类com.wueasy.cloud.web.util.UserHelper
java
/**
* 获取用户id
* @author: fallsea
* @return
*/
public static String getUserId();
/**
* 获取用户id
* @author: fallsea
* @return
*/
public static Long getUserIdLong();
/**
* 获取用户昵称
* @author: fallsea
* @return
*/
public static String getNickname();
/**
* 获取用户访问ip
* @author: fallsea
* @return
*/
public static String getIp();
/**
* 获取请求的唯一标识
* @author: fallsea
* @return
*/
public static String getRequestId();
/**
* 获取是否管理员
* @author: fallsea
* @return true 是
*/
public static boolean getIsSystem();
/**
* 获取系统参数
* @author: fallsea
* @return
*/
public static SystemParameterEntity getSystemParameter();
/**
* 获取自定义参数对象
* @author: fallsea
* @return
*/
public static final Map<String, String> getCustomParameterMap();