From 4922157a14d005f4b86e79f3ade1abc38fc0f0ee Mon Sep 17 00:00:00 2001 From: lsh <1> Date: 星期六, 20 五月 2023 11:18:08 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/utils/PostMesDataUtils.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/zy/asrs/utils/PostMesDataUtils.java b/src/main/java/com/zy/asrs/utils/PostMesDataUtils.java index f5e9271..7cc409d 100644 --- a/src/main/java/com/zy/asrs/utils/PostMesDataUtils.java +++ b/src/main/java/com/zy/asrs/utils/PostMesDataUtils.java @@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSONObject; import com.core.exception.CoolException; import com.zy.asrs.service.ApiLogService; +import com.zy.asrs.service.impl.ApiLogServiceImpl; import com.zy.asrs.task.AbstractHandler; import com.zy.asrs.task.core.ReturnT; import com.zy.common.utils.HttpHandler; @@ -13,20 +14,19 @@ @Slf4j public class PostMesDataUtils extends AbstractHandler<String> { - @Autowired - private ApiLogService apiLogService; - @Value("${mes.start}") - private boolean start; //涓婃姤寮�鍏� + + private ApiLogService apiLogService = new ApiLogServiceImpl(); public ReturnT<String> postMesData(String name,String URL,String mesPath, Object combParam){ - if (!start){ + if (true){ + System.out.println("name:"+name+",URL:"+URL+",mesPath:"+mesPath+",combParam:"+combParam); return SUCCESS; } if(combParam != null){ String response = ""; boolean success = false; try { -// Map<String, Object> map = new HashMap<>(); +// Map<String, Object> map = new HashMap<>() // map.put("appkey","ea1f0459efc02a79f046f982767939ae"); response = new HttpHandler.Builder() // .setHeaders(map) @@ -43,7 +43,7 @@ throw new CoolException("涓婃姤"+name); } } catch (Exception e) { - log.error("fail", e); + log.error("涓婃姤澶辫触"); // TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); return FAIL.setMsg(e.getMessage()); } finally { -- Gitblit v1.9.1