中继服务拉取完善

version1
admin 2 years ago
parent a12745fbc4
commit d86b90b684

@ -246,10 +246,18 @@ public class IdcServiceImpl implements IdcService {
String result = "";
MultipartFile[] files = {};
try {
boolean success=true;
Response response = client.newCall(request).execute();
result = response.body().toString();
JSONObject json = JSONObject.parseObject(result);
analyToDB(json,files);
if(isLastLevel()) {
success = analyToDB(json,files);
} else {
syncAddTaskStatus(json,false);
}
String host = getNextHost();
if(success)
post(host+"/spssync/common/success",params);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();

Loading…
Cancel
Save