...
|
...
|
@@ -2,7 +2,6 @@ package com.sunyo.wlpt.cgonms.provide.controller; |
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
|
|
import com.sunyo.wlpt.cgonms.provide.domain.*;
|
|
|
import com.sunyo.wlpt.cgonms.provide.feign.GetCgoAsmFeign;
|
...
|
...
|
@@ -22,7 +21,6 @@ import java.io.IOException; |
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import java.io.IOException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
...
|
...
|
@@ -93,16 +91,12 @@ public class NmsController { |
|
|
@RequestParam(value = "flightNo", required = false) String flightNo,
|
|
|
HttpServletRequest request) {
|
|
|
|
|
|
/**
|
|
|
* 1.取token作爲websocket的sid
|
|
|
* 2.每個可以返回給前端的消息通過websocket發送回去
|
|
|
*/
|
|
|
// 获取token
|
|
|
String sid = request.getHeader("Authorization");
|
|
|
log.info("token的值:" + sid);
|
|
|
final String startTime = sdf.format(new Date());
|
|
|
ResultWs resultStart = new ResultWs("数据开始获取,开始时间:"+ startTime);
|
|
|
|
|
|
sendMsgByWebsocket("开始时间:" + startTime, sid);
|
|
|
String resultStart = JSON.toJSONString(new ResultWs("数据开始获取,开始时间:" + startTime));
|
|
|
sendMsgByWebsocket(resultStart, sid);
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -116,7 +110,7 @@ public class NmsController { |
|
|
//控制index,查询数据的时候,保证索引的位置不出错
|
|
|
int index = 0;
|
|
|
try {
|
|
|
// 如果数据大于50个,则每次获取前50条。逐次获取
|
|
|
/*如果数据大于50个,则每次获取前50条。逐次获取*/
|
|
|
if (resultList != null && !resultList.isEmpty() && resultList.size() > THREAD_ACCOUNT) {
|
|
|
while (index < resultList.size()) {
|
|
|
//如果剩余未处理的数量 大于 等于线程数量,则遍历次数为线程数量
|
...
|
...
|
@@ -130,8 +124,7 @@ public class NmsController { |
|
|
resultList.set(i, result);
|
|
|
|
|
|
int temp = i + index;
|
|
|
ResultWs resultWs = new ResultWs();
|
|
|
resultWs = new ResultWs(sid, "获取数据,第" + temp + "条", result);
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + temp + "条", "201");
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
...
|
...
|
@@ -150,8 +143,7 @@ public class NmsController { |
|
|
result = threadJob(resultList.get(i + index), latch, threadPool);
|
|
|
|
|
|
int temp = i + index;
|
|
|
ResultWs resultWs = new ResultWs();
|
|
|
resultWs = new ResultWs(sid, "获取数据,第" + temp + "条", result);
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + temp + "条", "201");
|
|
|
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
...
|
...
|
@@ -171,8 +163,7 @@ public class NmsController { |
|
|
result = threadJob(resultList.get(i), latch, threadPool);
|
|
|
|
|
|
resultList.set(i, result);
|
|
|
ResultWs resultWs = new ResultWs();
|
|
|
resultWs = new ResultWs(sid, "获取数据,第" + i + "条", result);
|
|
|
ResultWs resultWs = new ResultWs("获取数据,第" + i + "条", "201");
|
|
|
String resultJs = JSON.toJSONString(resultWs, SerializerFeature.DisableCircularReferenceDetect);
|
|
|
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
...
|
...
|
@@ -182,22 +173,15 @@ public class NmsController { |
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
log.error("获取目录文件出错", e);
|
|
|
log.error("获取数据出错", e);
|
|
|
}
|
|
|
|
|
|
|
|
|
System.out.println("出港信息,获取完毕");
|
|
|
System.out.println("index的值为:" + index);
|
|
|
final String endTime = sdf.format(new Date());
|
|
|
|
|
|
System.out.println("出港信息,获取完毕,index的值为:" + index);
|
|
|
System.out.println("结束时间:" + endTime);
|
|
|
String resultJs = JSON.toJSONString(new ResultWs(sid, "获取数据,完毕", resultList));
|
|
|
String resultJs = JSON.toJSONString(new ResultWs("获取数据,结束时间:" + endTime, resultList, "200"));
|
|
|
sendMsgByWebsocket(resultJs, sid);
|
|
|
sendMsgByWebsocket("出港信息,获取完毕,结束时间:" + endTime, sid);
|
|
|
|
|
|
resultJson.setCode("200");
|
|
|
resultJson.setData(resultList);
|
|
|
|
|
|
return resultJson;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -246,16 +230,11 @@ public class NmsController { |
|
|
* 区域描述,中文
|
|
|
*/
|
|
|
BasArea basArea = basAreaService.getBasAreaInfo(ta.getArea());
|
|
|
|
|
|
//航班目的区域,中文描述,所属洲
|
|
|
result.setAreaDescChn(basArea.getAreaDescChn());
|
|
|
|
|
|
/**
|
|
|
* 6.根据 理货信息 中的运单号,获取预配表中的相应数据
|
|
|
*
|
|
|
* 发货人名称
|
|
|
* 收货人名称
|
|
|
* 航班目的站
|
|
|
*/
|
|
|
// 6.根据 理货信息 中的运单号,获取预配表中的相应数据
|
|
|
List<PrepareMaster> pm = prepareMasterService.getPrepareMasterInfo(result.getWaybillNoMaster());
|
|
|
if (pm != null && pm.size() > 0) {
|
|
|
//发货人名称
|
...
|
...
|
@@ -266,7 +245,7 @@ public class NmsController { |
|
|
result.setAimStation(pm.get(0).getDestinationStation());
|
|
|
}
|
|
|
/**
|
|
|
* 获取数据仓库的对应数据
|
|
|
* //获取数据仓库的对应数据
|
|
|
|
|
|
// if (result.getWaybillNoMaster() != null && result.getWaybillNoMaster() != "") {}
|
|
|
ResultExitData dataWareHouseInfo=new ResultExitData();
|
...
|
...
|
@@ -277,9 +256,7 @@ public class NmsController { |
|
|
result.setTotalGrossWeightMeasure(dataWareHouseInfo.getTotalGrossWeightMeasure());
|
|
|
*/
|
|
|
|
|
|
/**
|
|
|
* 获取运输工具的对应数据
|
|
|
*/
|
|
|
//获取运输工具的对应数据
|
|
|
ResultExitData transportInfo = new ResultExitData();
|
|
|
transportInfo = getTransportFeign.getInfo(result.getFlightNo(), result.getFlightDate());
|
|
|
//设置航班公司
|
...
|
...
|
@@ -295,10 +272,7 @@ public class NmsController { |
|
|
//设置航班计划时间
|
|
|
result.setFlightPlanTime(transportInfo.getFlightPlanTime());
|
|
|
|
|
|
/**
|
|
|
* 获取代理人的相关数据
|
|
|
*/
|
|
|
// if (result.getWaybillNoMaster() != null && result.getWaybillNoMaster() != "") { }
|
|
|
//获取代理人的相关数据
|
|
|
ResultExitData asmInfo = new ResultExitData();
|
|
|
asmInfo = getCgoAsmFeign.getInfo(result.getWaybillNoMaster());
|
|
|
//设置结算代理人
|
...
|
...
|
@@ -322,6 +296,11 @@ public class NmsController { |
|
|
return result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 由于前台传过来的时间参数是字符串,故转一下格式
|
|
|
*
|
|
|
* @param binder 转换器
|
|
|
*/
|
|
|
@InitBinder
|
|
|
public void initBinder(WebDataBinder binder) {
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
...
|
...
|
@@ -329,12 +308,15 @@ public class NmsController { |
|
|
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @param msg JSON字符串
|
|
|
* @param sid 唯一识别值
|
|
|
*/
|
|
|
private void sendMsgByWebsocket(String msg, String sid) {
|
|
|
try {
|
|
|
WebSocketServer.sendInfo(msg, sid);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
|
|
|
|
}
|
|
|
}
|
|
|
} |
...
|
...
|
|