|
|
|
@ -320,9 +320,10 @@ public class SpsSyncDataController {
|
|
|
|
|
private JSONObject redirect(HttpServletRequest request, String uri) {
|
|
|
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
|
|
|
HttpEntity<String> httpEntity = uriUtils.buildHeader(request);
|
|
|
|
|
String taskId = request.getHeader("taskId");
|
|
|
|
|
|
|
|
|
|
ResponseEntity<JSONObject> responseBody = null;
|
|
|
|
|
SyncUpLoadRequest bean = JSONUtil.toBean(httpEntity.getBody(), SyncUpLoadRequest.class);
|
|
|
|
|
String taskId = bean.getTaskId();
|
|
|
|
|
if (request.getMethod().equals("POST")) {
|
|
|
|
|
//写入日志
|
|
|
|
|
writeUploadLog(taskId, httpEntity.getBody(), bean.getExportType());
|
|
|
|
@ -346,10 +347,12 @@ public class SpsSyncDataController {
|
|
|
|
|
basicUploadStatusEntity.setIdDatas(exportType.getKey());
|
|
|
|
|
basicUploadStatusEntity.setType(exportType.getRemark());
|
|
|
|
|
basicUploadStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
|
// basicUploadStatusEntity.setRemark();
|
|
|
|
|
FileUtils.makeDirectory(filePath + "upload/");
|
|
|
|
|
String fileName = filePath + "upload/" + exportType.getRemark() + "-" + taskId + ".udi";
|
|
|
|
|
FileUtils.SaveFileAs(content, fileName);
|
|
|
|
|
basicUploadStatusEntity.setCacheFilePath(fileName);
|
|
|
|
|
basicUploadStatusEntity.setStatus(1);
|
|
|
|
|
basicUploadService.insertDownloadStatus(basicUploadStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|