前言

Github:https://github.com/HealerJean

博客:http://blog.healerjean.com


/**
 * @Desc: 获取access_toaken
 * @Author HealerJean
 * @Date 2018/5/25  上午11:34.
 */
@Slf4j
@Service
public class AccessToakeUtil {

   
    @Autowired
    private IdentityService identityService;
    private static IdentityService updateIdentityService;
    @PostConstruct
    private void init() {
        updateIdentityService = this.identityService;
    }

    
    
}

    

ContactAuthor