From 79d5772590d1fefb8d5772ab891ce4d7a8361669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E4=BF=8A=E6=9D=B0?= <9463626+zhou-junjiezjj@user.noreply.gitee.com> Date: Mon, 15 May 2023 20:27:24 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E5=BA=A6=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ext/wms/rest/AcsToWmsZDController.java | 48 ++++++ .../ext/wms/rest/WmsZDToAcsController.java | 34 ++++ .../ext/wms/service/AcsToWmsZDService.java | 33 ++++ .../ext/wms/service/WmsZDToAcsService.java | 18 +++ .../service/impl/AcsToWmsZDServiceImpl.java | 145 ++++++++++++++++++ .../service/impl/WmsZDToAcsServiceImpl.java | 144 +++++++++++++++++ .../nl/config/rest/AcsConfigController.java | 29 ++++ .../nl/config/server/AcsConfigService.java | 7 + .../server/impl/AcsConfigServiceImpl.java | 26 ++++ .../modules/logging/service/LogService.java | 12 ++ .../logging/service/impl/LogServiceImpl.java | 5 + .../main/resources/config/application-dev.yml | 4 +- .../src/main/resources/config/application.yml | 2 + 13 files changed, 505 insertions(+), 2 deletions(-) create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/AcsToWmsZDController.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/WmsZDToAcsController.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/AcsToWmsZDService.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/WmsZDToAcsService.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/AcsToWmsZDServiceImpl.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/WmsZDToAcsServiceImpl.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/config/rest/AcsConfigController.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/config/server/AcsConfigService.java create mode 100644 acs/nladmin-system/src/main/java/org/nl/config/server/impl/AcsConfigServiceImpl.java diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/AcsToWmsZDController.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/AcsToWmsZDController.java new file mode 100644 index 0000000..d86606b --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/AcsToWmsZDController.java @@ -0,0 +1,48 @@ +package org.nl.acs.ext.wms.rest; + +import com.alibaba.fastjson.JSONObject; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.modules.logging.annotation.Log; +import org.springframework.context.annotation.Lazy; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Map; + +@RestController +@RequiredArgsConstructor +@Api(tags = "wms接口") +@RequestMapping("/restful/api/v3/system_car") +@Slf4j +@Lazy +public class AcsToWmsZDController { + private final AcsToWmsZDController acsToWmsZDService; + + @PostMapping("/feedbackTask") + @Log("任务反馈") + @ApiOperation("任务反馈") + public ResponseEntity taskFeedback(@RequestBody Map whereJson) throws Exception { + return new ResponseEntity<>(acsToWmsZDService.taskFeedback(whereJson), HttpStatus.OK); + } + + @PostMapping("/deprecateTask") + @Log("任务取消") + @ApiOperation("任务取消") + public ResponseEntity taskDeprecate(@RequestBody Map whereJson) throws Exception { + return new ResponseEntity<>(acsToWmsZDService.taskDeprecate(whereJson), HttpStatus.OK); + } + + @PostMapping("/deviceStatusUpdate") + @Log("设备状态上传") + @ApiOperation("设备状态上传") + public ResponseEntity deviceStatusUpdate(@RequestBody Map whereJson) throws Exception { + return new ResponseEntity<>(acsToWmsZDService.deviceStatusUpdate(whereJson), HttpStatus.OK); + } +} diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/WmsZDToAcsController.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/WmsZDToAcsController.java new file mode 100644 index 0000000..dc6d46b --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/rest/WmsZDToAcsController.java @@ -0,0 +1,34 @@ +package org.nl.acs.ext.wms.rest; + +import com.alibaba.fastjson.JSONObject; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.acs.ext.wms.service.WmsZDToAcsService; +import org.nl.modules.logging.annotation.Log; +import org.springframework.context.annotation.Lazy; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequiredArgsConstructor +@Api(tags = "wms接口") +@RequestMapping("/restful/api/v3") +@Slf4j +@Service +@Lazy +public class WmsZDToAcsController { + private final WmsZDToAcsService wmsZDToAcsService; + @PostMapping("/createTask") + @Log("任务接收") + @ApiOperation("任务接收") + public ResponseEntity taskCreate(@RequestBody JSONObject whereJson) { + return new ResponseEntity<>(wmsZDToAcsService.taskCreate(whereJson), HttpStatus.OK); + } +} diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/AcsToWmsZDService.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/AcsToWmsZDService.java new file mode 100644 index 0000000..d18049b --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/AcsToWmsZDService.java @@ -0,0 +1,33 @@ +package org.nl.acs.ext.wms.service; + +import com.alibaba.fastjson.JSONObject; + +import java.util.Map; + +public interface AcsToWmsZDService { + + + /** + * 任务反馈 + * + * + * @return Map + */ + Map taskFeedback(Map whereJson); + + /** + * 任务取消 + * + * + * @return Map + */ + Map taskDeprecate(Map whereJson); + + /** + * 设备状态上传 + * + * + * @return Map + */ + Map deviceStatusUpdate(Map whereJson); +} diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/WmsZDToAcsService.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/WmsZDToAcsService.java new file mode 100644 index 0000000..23f13ad --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/WmsZDToAcsService.java @@ -0,0 +1,18 @@ +package org.nl.acs.ext.wms.service; + +import com.alibaba.fastjson.JSONObject; +import org.nl.acs.ext.wms.data.CreateTaskRequest; +import org.nl.acs.ext.wms.data.CreateTaskResponse; + +import java.util.List; +import java.util.Map; + +public interface WmsZDToAcsService { + + /** + * 任务接收 + * + * @return Map + */ + Map taskCreate(JSONObject whereJson); +} diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/AcsToWmsZDServiceImpl.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/AcsToWmsZDServiceImpl.java new file mode 100644 index 0000000..274333c --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/AcsToWmsZDServiceImpl.java @@ -0,0 +1,145 @@ +package org.nl.acs.ext.wms.service.impl; + +import cn.hutool.core.map.MapUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import cn.hutool.http.HttpRequest; +import cn.hutool.http.HttpResponse; +import com.alibaba.fastjson.JSON; +import com.alibaba.fastjson.JSONObject; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.acs.AcsConfig; +import org.nl.acs.device.address.service.AddressService; +import org.nl.acs.device.address.service.dto.AddressDto; +import org.nl.acs.device.service.DeviceService; +import org.nl.acs.ext.wms.service.AcsToWmsZDService; +import org.nl.acs.opc.DeviceAppService; +import org.nl.acs.route.service.RouteLineService; +import org.nl.acs.route.service.dto.RouteLineDto; +import org.nl.acs.task.service.TaskService; +import org.nl.acs.task.service.dto.TaskDto; +import org.nl.config.server.AcsConfigService; +import org.nl.modules.logging.service.LogService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Service; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Service +@RequiredArgsConstructor +@Slf4j +public class AcsToWmsZDServiceImpl implements AcsToWmsZDService { + + private final DeviceAppService deviceAppService; + + @Autowired + AcsConfigService acsConfigService; + + @Autowired + AddressService addressService; + @Autowired + LogService logServer; + + @Value("${acsTowms.token}") + public String token; + + @Override + public Map taskFeedback(Map whereJson) { + log.info("taskFeedback-----请求参数{}", whereJson.toString()); + String taskCode = MapUtil.getStr(whereJson, "taskCode"); + String carId = MapUtil.getStr(whereJson, "carId"); + HttpResponse result = null; + AddressDto addressDto = addressService.findByCode("taskFeedback"); + String wcsurl = acsConfigService.findConfigFromCache().get(AcsConfig.WCSURL); + String methods_url = addressDto.getMethods_url(); + String url = wcsurl + methods_url; + try { + result = HttpRequest.post(url) + .header("Authorization", token).body(JSON.toJSONString(whereJson)) + .execute(); + logServer.log(taskCode, "taskFeedback", "success", whereJson.toString(), result.body(), String.valueOf(result.getStatus()), url, carId); + JSONObject jo = JSONObject.parseObject(result.body()); + return jo; + } catch (Exception e) { + int status = 400; + if (!ObjectUtil.isEmpty(result)) { + status = result.getStatus(); + } + logServer.log(taskCode, "taskFeedback", "error", whereJson.toString(), e.getMessage(), String.valueOf(status), url, carId); + Map map = new HashMap<>(); + map.put("responseCode", 1); + map.put("responseMessage", e.getMessage()); + map.put("parameters", new HashMap<>()); + return map; + } + } + + @Override + public Map taskDeprecate(Map whereJson) { + log.info("taskDeprecate--------------:输入参数" + whereJson.toString()); + String taskCode = MapUtil.getStr(whereJson, "task_code"); + HttpResponse result = null; + AddressDto addressDto = addressService.findByCode("deprecateTask"); + String wcsurl = acsConfigService.findConfigFromCache().get(AcsConfig.WCSURL); + String methods_url = addressDto.getMethods_url(); + String url = wcsurl + methods_url; + try { + result = HttpRequest.post(url) + .header("Authorization", token) + .body(JSON.toJSONString(whereJson)) + .execute(); + logServer.log(taskCode, "taskDeprecate", "success", whereJson.toString(), result.body(), String.valueOf(result.getStatus()), url, ""); + JSONObject jo = JSONObject.parseObject(result.body()); + return jo; + } catch (Exception e) { + int status = 400; + if (!ObjectUtil.isEmpty(result)) { + status = result.getStatus(); + } + logServer.log(taskCode, "taskFeedback", "error", whereJson.toString(), e.getMessage(), String.valueOf(status), url, ""); + Map map = new HashMap<>(); + map.put("responseCode", 1); + map.put("responseMessage", e.getMessage()); + return map; + } + } + + @Override + public Map deviceStatusUpdate(Map whereJson) { + Map map = new HashMap<>(); + HttpResponse result = null; + AddressDto addressDto = addressService.findByCode("deviceStatusUpdate"); + String wcsurl = acsConfigService.findConfigFromCache().get(AcsConfig.WCSURL); + String methods_url = addressDto.getMethods_url(); + String url = wcsurl + methods_url; + String deviceCode = MapUtil.getStr(whereJson, "deviceCode"); + if (StrUtil.isEmpty(deviceCode)) { + map.put("responseCode", 1); + map.put("responseMessage", "请求设备号不能为空!"); + map.put("parameters", new HashMap<>()); + return map; + } + try { + result = HttpRequest.post(url) + .header("Authorization", token).body(JSON.toJSONString(whereJson)) + .execute(); + JSONObject jo = JSONObject.parseObject(result.body()); + log.info("checkDeviceStatus-----输出参数{}", jo.toString()); + return jo; + } catch (Exception e) { + int status = 400; + if (!ObjectUtil.isEmpty(result)) { + status = result.getStatus(); + } + logServer.log(deviceCode, "deviceStatusUpdate", "error", whereJson.toString(), e.getMessage(), String.valueOf(status), url, ""); + map.put("responseCode", 1); + map.put("responseMessage", e.getMessage()); + return map; + } + } + +} diff --git a/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/WmsZDToAcsServiceImpl.java b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/WmsZDToAcsServiceImpl.java new file mode 100644 index 0000000..3296358 --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/acs/ext/wms/service/impl/WmsZDToAcsServiceImpl.java @@ -0,0 +1,144 @@ +package org.nl.acs.ext.wms.service.impl; + +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.alibaba.fastjson.JSONObject; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.acs.device.service.DeviceService; +import org.nl.acs.ext.wms.service.WmsZDToAcsService; +import org.nl.acs.route.service.RouteLineService; +import org.nl.acs.route.service.dto.RouteLineDto; +import org.nl.acs.task.service.TaskService; +import org.nl.acs.task.service.dto.TaskDto; +import org.nl.modules.logging.service.LogService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; +import org.springframework.stereotype.Service; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Service +@RequiredArgsConstructor +@Slf4j +public class WmsZDToAcsServiceImpl implements WmsZDToAcsService { + @Autowired + RouteLineService routeLineService; + + @Autowired + TaskService taskService; + + + @Autowired + LogService logServer; + + @Override + public Map taskCreate(JSONObject whereJson) { + Map map = new HashMap<>(); + log.info("taskCreate--------------:输入参数:" + whereJson.toString()); + //获取甲方wcs传过来的参数 + String houseCode = whereJson.getString("houseCode"); + String systemCode = whereJson.getString("systemCode"); + JSONObject parameters = whereJson.getJSONObject("parameters"); + String taskCode = whereJson.getString("taskCode"); + String taskType = whereJson.getString("taskType"); + String taskCreateDatetime = whereJson.getString("taskCreateDatetime"); + String containerCode = whereJson.getString("containerCode"); + String containerType = whereJson.getString("containerType"); + String start_point_code = whereJson.getString("locationFrom"); + String next_point_code = whereJson.getString("locationTo"); + String priority = whereJson.getString("priority"); + String start_device_code = ""; + String next_device_code = ""; + //判断必填项是否为空 + if (StrUtil.isEmpty(taskCode)) { + map.put("responseCode", 1); + map.put("responseMessage", "任务号不能为空"); + return map; + } + if (StrUtil.isEmpty(start_point_code)) { + map.put("responseCode", 1); + map.put("responseMessage", "起点不能为空"); + return map; + } + if (StrUtil.isEmpty(next_point_code)) { + map.put("responseCode", 1); + map.put("responseMessage", "终点不能为空"); + return map; + } + if (StrUtil.isEmpty(containerCode)) { + map.put("responseCode", 1); + map.put("responseMessage", "容器编号不能为空"); + return map; + } + + if (start_point_code.indexOf("-") > 0) { + String str[] = start_point_code.split("-"); + start_device_code = str[0]; + } else { + start_device_code = start_point_code; + } + + if (next_point_code.indexOf("-") > 0) { + String str[] = next_point_code.split("-"); + next_device_code = str[0]; + } else { + next_device_code = next_point_code; + } + + //查询wcs传过来的起点终点路由 + List list = routeLineService.getShortPathLines(start_device_code, next_device_code, "normal"); + if (ObjectUtil.isEmpty(list)) { + map.put("responseCode", 1); + map.put("responseMessage", "路由不通!"); + return map; + } + //查询任务编码是否重复 + TaskDto taskDto = taskService.findByCodeFromCache(taskCode); + if (taskDto != null) { + map.put("responseCode", 1); + map.put("responseMessage", "不能存在相同的任务号!"); + return map; + } + //判断载具编码是否相同 + if (!StrUtil.isEmpty(containerCode)) { + TaskDto vehicle_dto = taskService.findByContainer(containerCode); + if (vehicle_dto != null) { + map.put("responseCode", 1); + map.put("responseMessage", "已存在该容器号的任务!"); + return map; + } + } + + JSONObject jo = new JSONObject(); + jo.put("task_code", taskCode); + jo.put("start_point_code", start_point_code); + jo.put("next_point_code", next_point_code); + jo.put("start_parent_code", start_point_code); + jo.put("next_parent_code", next_point_code); + jo.put("start_device_code", start_device_code); + jo.put("next_device_code", next_device_code); + jo.put("priority", priority); + jo.put("vehicle_code", containerCode); + jo.put("vehicle_type", containerType); + jo.put("create_time", taskCreateDatetime); + jo.put("task_type", taskType); + TaskDto task_dto = (TaskDto) JSONObject.parseObject(String.valueOf(jo), TaskDto.class); + try { + taskService.create(task_dto); + logServer.log(taskCode, "taskCreate", "success", whereJson.toString(), "创建成功", String.valueOf(200), "/createTask", ""); + } catch (Exception e) { + logServer.log(taskCode, "taskCreate", "error", whereJson.toString(), e.getMessage(), String.valueOf(400), "/createTask", ""); + e.printStackTrace(); + map.put("responseCode", 1); + map.put("responseMessage", e.getMessage()); + return map; + } + map.put("responseCode", 0); + map.put("responseMessage", "创建任务成功!"); + map.put("parameters", new HashMap<>()); + return map; + } +} diff --git a/acs/nladmin-system/src/main/java/org/nl/config/rest/AcsConfigController.java b/acs/nladmin-system/src/main/java/org/nl/config/rest/AcsConfigController.java new file mode 100644 index 0000000..6c3a66e --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/config/rest/AcsConfigController.java @@ -0,0 +1,29 @@ +package org.nl.config.rest; + +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.config.server.AcsConfigService; +import org.nl.modules.logging.annotation.Log; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequiredArgsConstructor +@Api(tags = "系统参数管理") +@RequestMapping("/api/param") +@Slf4j +public class AcsConfigController { + private final AcsConfigService acsConfigService; + + @Log("缓存查询系统参数") + @ApiOperation("缓存查询系统参数") + @PostMapping(value = "/findByCodeFromCache") + public ResponseEntity findConfigFromCache() { + return new ResponseEntity<>(acsConfigService.findConfigFromCache(), HttpStatus.OK); + } +} diff --git a/acs/nladmin-system/src/main/java/org/nl/config/server/AcsConfigService.java b/acs/nladmin-system/src/main/java/org/nl/config/server/AcsConfigService.java new file mode 100644 index 0000000..0e68442 --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/config/server/AcsConfigService.java @@ -0,0 +1,7 @@ +package org.nl.config.server; + +import java.util.Map; + +public interface AcsConfigService { + Map findConfigFromCache(); +} diff --git a/acs/nladmin-system/src/main/java/org/nl/config/server/impl/AcsConfigServiceImpl.java b/acs/nladmin-system/src/main/java/org/nl/config/server/impl/AcsConfigServiceImpl.java new file mode 100644 index 0000000..2f3b2fa --- /dev/null +++ b/acs/nladmin-system/src/main/java/org/nl/config/server/impl/AcsConfigServiceImpl.java @@ -0,0 +1,26 @@ +package org.nl.config.server.impl; + +import cn.hutool.core.util.ObjectUtil; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.nl.config.server.AcsConfigService; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import java.util.HashMap; +import java.util.Map; + +@Service +@RequiredArgsConstructor +@Slf4j +public class AcsConfigServiceImpl implements AcsConfigService { + + Map acsconfigs = new HashMap<>(); + + @Override + @Transactional(rollbackFor = Exception.class) + public Map findConfigFromCache() { + Map demo = (Map) ObjectUtil.clone(this.acsconfigs); + return demo; + } +} diff --git a/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/LogService.java b/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/LogService.java index e9fadd0..7df5f48 100644 --- a/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/LogService.java +++ b/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/LogService.java @@ -79,4 +79,16 @@ public interface LogService { * 删除所有INFO日志 */ void delAllByInfo(); + + /** + * @param task_code 任务编码 + * @param method 接口方法名 + * @param type 日志类别:error / info + * @param requestParam 请求参数 + * @param responseParam 返回参数 + * @param status_code 接口状态码 + * @param requestUrl 请求地址 + * @param vehicle_code 载具号 + */ + void log(String task_code, String method, String type, String requestParam, String responseParam, String status_code, String requestUrl, String vehicle_code); } diff --git a/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/impl/LogServiceImpl.java b/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/impl/LogServiceImpl.java index caaffdd..269538c 100644 --- a/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/impl/LogServiceImpl.java +++ b/acs/nladmin-system/src/main/java/org/nl/modules/logging/service/impl/LogServiceImpl.java @@ -155,4 +155,9 @@ public class LogServiceImpl implements LogService { public void delAllByInfo() { logRepository.deleteByLogType("INFO"); } + + @Override + public void log(String task_code, String method, String type, String requestParam, String responseParam, String status_code, String requestUrl, String vehicle_code) { + + } } diff --git a/acs/nladmin-system/src/main/resources/config/application-dev.yml b/acs/nladmin-system/src/main/resources/config/application-dev.yml index d135cf0..d4bbec2 100644 --- a/acs/nladmin-system/src/main/resources/config/application-dev.yml +++ b/acs/nladmin-system/src/main/resources/config/application-dev.yml @@ -13,11 +13,11 @@ spring: driverClassName: net.sf.log4jdbc.sql.jdbcapi.DriverSpy # url: jdbc:log4jdbc:mysql://${DB_HOST:10.1.3.91}:${DB_PORT:3306}/${DB_NAME:acs}?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&useOldAliasMetadataBehavior=true # url: jdbc:log4jdbc:mysql://${DB_HOST:192.168.81.252}:${DB_PORT:3306}/${DB_NAME:lzhl_one_acs}?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&useOldAliasMetadataBehavior=true - url: jdbc:log4jdbc:mysql://${DB_HOST:127.0.0.1}:${DB_PORT:3306}/${DB_NAME:wzgj_acs}?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&useOldAliasMetadataBehavior=true + url: jdbc:log4jdbc:mysql://${DB_HOST:127.0.0.1}:${DB_PORT:3306}/${DB_NAME:lzhl_one_acs}?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false&useOldAliasMetadataBehavior=true username: ${DB_USER:root} # password: ${DB_PWD:P@ssw0rd} # password: ${DB_PWD:Root.123456} - password: ${DB_PWD:password} + password: ${DB_PWD:123456} # 初始连接数 initial-size: 5 diff --git a/acs/nladmin-system/src/main/resources/config/application.yml b/acs/nladmin-system/src/main/resources/config/application.yml index f943602..482d9bf 100644 --- a/acs/nladmin-system/src/main/resources/config/application.yml +++ b/acs/nladmin-system/src/main/resources/config/application.yml @@ -78,3 +78,5 @@ security: - /api/localStorage/pictures # 参数 - /api/param/getValueByCode +acsTowms: + token: Bearer eyJhbGciOiJIUzUxMiJ9.eyJqdGkiOiJiZTVmOGZiZDcyMWU0NGFiODRlOGI4NTE4ODE5OWM0ZiIsImF1dGgiOiJ1c2VyOmxpc3QsbW9uaXRvcjpsaXN0Iiwic3ViIjoiYWNzIn0.JGga-TcIHTt76KT_m_7bt-fxdBUdwdRfRjXzwLyPLVLLPoOSXbVPbf2q6vcV-fh33r2wyrBEleWYVPOEvjrZMw