1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.stylefeng.guns.base.auth.context;
|
| import cn.stylefeng.roses.core.util.SpringContextHolder;
|
| /**
| * 当前登录用户信息获取的接口
| *
| * @author fengshuonan
| * @Date 2019/7/18 22:27
| */
| public class LoginContextHolder {
|
| public static LoginContext getContext() {
| return SpringContextHolder.getBean(LoginContext.class);
| }
|
| }
|
|