Преглед изворни кода

feat: 沃运维url改为从配置文件读取

weijianghai пре 2 година
родитељ
комит
4495bcc63a

+ 5 - 1
src/main/java/com/nokia/service/WoyunweiService.java

@@ -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);

+ 1 - 0
src/main/resources/application.properties

@@ -2,6 +2,7 @@
 spring.profiles.active=product
 top.url=http://10.17.180.3/prod-api/verifySystem
 dop.url=http://10.17.180.5:8089/prod-api/verifySystem
+woyunwei.url=https://10.170.43.39:8038/PAOOS/aaaa/userservice/getUserInfo.do?method=findUserBySessionID&sessionID=
 top.api.fromSystem=dh
 dop.api.fromSystem=dh
 top.redirect.url=https://133.96.90.208/login