...
|
...
|
@@ -44,9 +44,6 @@ public class UserProxyService { |
|
|
@Value("${uic.url:http://uic.yohoops.org/uic}")
|
|
|
private String uicUrl;
|
|
|
|
|
|
@Value("${ip.port.uic.server}")
|
|
|
private String uicServerIpAndPort;
|
|
|
|
|
|
/**
|
|
|
* 获取用户信息
|
|
|
* @param uid
|
...
|
...
|
@@ -149,6 +146,7 @@ public class UserProxyService { |
|
|
String url = uicUrl + GET_USER_PROFILES_BY_UIDS;
|
|
|
String uids = getUidStrs(uidList);
|
|
|
List<ProfileInfoRsp> result = Lists.newArrayList();
|
|
|
logger.info("getUserProfilesByUids url is {}", url);
|
|
|
try {
|
|
|
result = serviceCaller.post("uic.getUserProfilesByUids", url, uids, List.class, null).get(5);
|
|
|
} catch (Exception e) {
|
...
|
...
|
|