|
|
package com.sunyo.wlpt.cgonms.provide.controller;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
|
|
|
|
|
|
|
|
import com.google.gson.Gson;
|
|
|
import com.google.gson.GsonBuilder;
|
|
|
import com.sunyo.wlpt.cgonms.provide.domain.*;
|
|
|
import com.sunyo.wlpt.cgonms.provide.feign.GetCgoAsmFeign;
|
|
|
import com.sunyo.wlpt.cgonms.provide.feign.GetDataWareHouseFeign;
|
...
|
...
|
@@ -11,6 +12,7 @@ import com.sunyo.wlpt.cgonms.provide.response.ResultJson; |
|
|
import com.sunyo.wlpt.cgonms.provide.response.ResultWs;
|
|
|
import com.sunyo.wlpt.cgonms.provide.service.*;
|
|
|
import com.sunyo.wlpt.cgonms.provide.thread.ExitThreadPoolFactory;
|
|
|
import com.sunyo.wlpt.cgonms.provide.utils.GsonUtils;
|
|
|
import com.sunyo.wlpt.cgonms.provide.websocket.WebSocketServer;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.propertyeditors.CustomDateEditor;
|
...
|
...
|
@@ -95,7 +97,8 @@ public class NmsController { |
|
|
String sid = request.getHeader("Authorization");
|
|
|
log.info("token的值:" + sid);
|
|
|
final String startTime = sdf.format(new Date());
|
|
|
String resultStart = JSON.toJSONString(new ResultWs("数据开始获取"));
|
|
|
|
|
|
String resultStart = GsonUtils.toJsonStr(new ResultWs("数据开始获取"));
|
|
|
sendMsgByWebsocket(resultStart, sid);
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
|
...
|
...
|
@@ -106,9 +109,9 @@ public class NmsController { |
|
|
resultExitData.setFlightDate(flightDate);
|
|
|
resultExitData.setFlightNo(flightNo);
|
|
|
List<ResultExitData> resultList = resultExitDataService.getResultExitDataInfo(resultExitData);
|
|
|
System.out.println("长度为:" + resultList.size());
|
|
|
log.info("长度为:" + resultList.size());
|
|
|
ResultWs resultTotal = new ResultWs("一共" + resultList.size() + "条数据", resultList.size());
|
|
|
String resultTotalJs = JSON.toJSONString(resultTotal, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
String resultTotalJs = GsonUtils.toJsonStr(resultTotal);
|
|
|
sendMsgByWebsocket(resultTotalJs, sid);
|
|
|
|
|
|
//控制index,查询数据的时候,保证索引的位置不出错
|
...
|
...
|
@@ -129,7 +132,7 @@ public class NmsController { |
|
|
|
|
|
int temp = i + index;
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + temp + "条", "201", temp, resultList.size());
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
String resultJs = GsonUtils.toJsonStr(resultWs);
|
|
|
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
|
|
}
|
...
|
...
|
@@ -149,7 +152,7 @@ public class NmsController { |
|
|
int temp = i + index;
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + temp + "条", "201", temp, resultList.size());
|
|
|
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
String resultJs = GsonUtils.toJsonStr(resultWs);
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
|
|
}
|
|
|
index = index + i;
|
...
|
...
|
@@ -168,7 +171,7 @@ public class NmsController { |
|
|
|
|
|
resultList.set(i, result);
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + i + "条", "201", i, resultList.size());
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
String resultJs = GsonUtils.toJsonStr(resultWs);
|
|
|
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
|
|
}
|
...
|
...
|
@@ -180,9 +183,9 @@ public class NmsController { |
|
|
log.error("获取数据出错", e);
|
|
|
}
|
|
|
final String endTime = sdf.format(new Date());
|
|
|
System.out.println("出港信息,获取完毕,index的值为:" + index);
|
|
|
System.out.println("结束时间:" + endTime);
|
|
|
String resultJs = JSON.toJSONString(new ResultWs("获取数据,完成", resultList, "200", resultList.size(), resultList.size()));
|
|
|
log.info("出港信息,获取完毕,index的值为:" + index);
|
|
|
log.info("结束时间:" + endTime);
|
|
|
String resultJs = GsonUtils.toJsonStr(new ResultWs("获取数据,完成", resultList, "200", resultList.size(), resultList.size()));
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
|
|
resultJson.setCode("200");
|
|
|
resultJson.setData(resultList);
|
...
|
...
|
@@ -323,4 +326,6 @@ public class NmsController { |
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
...
|
...
|
|