1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.xcong.excoin.common;
|
| import com.xcong.excoin.modules.member.entity.MemberEntity;
| import org.springframework.security.core.context.SecurityContextHolder;
|
| /**
| * 登陆用户工具类
| *
| * @author wzy
| * @date 2020-05-14
| **/
| public class LoginUserUtils {
|
| public static MemberEntity getAppLoginUser() {
| return (MemberEntity) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
| }
| }
|
|