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