|
@@ -4,6 +4,7 @@ import com.google.gson.JsonObject;
|
|
|
import com.google.gson.JsonParser;
|
|
|
import com.nokia.vo.TokenFlagVo;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
@@ -11,8 +12,11 @@ import org.springframework.web.client.RestTemplate;
|
|
|
@Slf4j
|
|
|
@Service
|
|
|
public class WoyunweiService {
|
|
|
+ @Value("${woyunwei.url}")
|
|
|
+ private String woyunweiUrl;
|
|
|
+
|
|
|
public TokenFlagVo woyunweiReturn(String token) {
|
|
|
- String url = "https://10.170.43.39:8038/PAOOS/aaaa/userservice/getUserInfo.do?method=findUserBySessionID&sessionID=" + token;
|
|
|
+ String url = woyunweiUrl + token;
|
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
|
String r = restTemplate.postForObject(url, new Object(), String.class);
|
|
|
log.info("沃运维获取用户信息响应: {}", r);
|