1. 程式人生 > >查找認證用戶的方法

查找認證用戶的方法

name on() pre ati ica nts imp ext pri

@Service("userService")
public class UserServiceImpl implements UserService {

@Override
public User findAuthenticatedUser() {
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
String username = auth.getName();
return this.userMapper.findByUsername(username);
}
}

UserService是Spring Security提供的方法

查找認證用戶的方法