springboot component注入servecie
Posted JLCUI
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot component注入servecie相关的知识,希望对你有一定的参考价值。
package com.infosec.sso.component.externalauthandsyn;
import java.util.Map;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.netauth.api.user.UserExtensionClient;
import com.netauth.utils.jsonresult.JsonResult;
@Component
public class AccountByExternalAuthAndSyn {
@Autowired
private UserExtensionClient userExtensionClient;
private static UserExtensionClient accSynMiddle;
public Map<String, Object> createAccountByExternalAuthAndSyn(String userId, String pwd) {
JsonResult res = accSynMiddle.createAccountByExternalAuthAndSyn(userId, pwd);
return (Map<String, Object>) res.getResult();
}
@PostConstruct
public void sessionUtilsInit() {
AccountByExternalAuthAndSyn.accSynMiddle = userExtensionClient;
}
}
以上是关于springboot component注入servecie的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot常用注解:@Resource/@Component与@Autowired的使用