/**
* Created by huangzhenyang on 2017/11/2.
* Token 工具類
*/
@Component // 關鍵1,將該工具類註冊爲組件, 加粗!!!
public class TokenUtil {
@Autowired
private TokenRepository tokenRepository;工具
@Autowired
private TokenService tokenService;this
public static TokenUtil tokenUtil; // 關鍵2.net
public TokenUtil() {
}blog
// 關鍵3
@PostConstruct
public void init() {
tokenUtil = this;
tokenUtil.tokenRepository = this.tokenRepository;
}
………………
————————————————
原文連接:https://blog.csdn.net/qq_35056292/article/details/78430777token