|
@@ -132,7 +132,8 @@ public class DataProcessService {
|
|
|
String preCode;
|
|
|
// 前置算法参数
|
|
|
List<Object> params = getParams(Optional.ofNullable(preparameterset).map(DataFormatUtil::toString).orElse(null), source);
|
|
|
- Map<String, Object> eval = JsScriptEngineUtil.eval(DataFormatUtil.toString(preConditions), params.toArray());
|
|
|
+ params.add(0, DataFormatUtil.toString(preConditions));
|
|
|
+ Map<String, Object> eval = JsScriptEngineUtil.eval(params.toArray());
|
|
|
|
|
|
preData.put("preResult", eval);
|
|
|
if (!Objects.equals(eval.get("code"), "0")) {
|
|
@@ -242,8 +243,14 @@ public class DataProcessService {
|
|
|
HashMap<String, Object> configMap = new HashMap<>();
|
|
|
configMap.put("methodName", algorithmsourcelibrary.get("code"));
|
|
|
configMap.put("path", algorithmsourcelibrary.get("filepath"));
|
|
|
- configMap.put("className", algorithmsourcelibrary.get("library"));
|
|
|
- Map<String, Object> result = JavaScriptEngineUtil.invoke(configMap, algorithmsourcelibrary.get("code").toString(), parameters.toArray());
|
|
|
+ Object className = algorithmsourcelibrary.get("library");
|
|
|
+ configMap.put("className", className);
|
|
|
+ Map<String, Object> result;
|
|
|
+// if ("com.scbfkj.uni.library.script.JsScriptEngineUtil".equals(className)) {
|
|
|
+// result = JsScriptEngineUtil.eval(parameters.toArray());
|
|
|
+// } else {
|
|
|
+ result = JavaScriptEngineUtil.invoke(configMap, algorithmsourcelibrary.get("code").toString(), parameters.toArray());
|
|
|
+// }
|
|
|
|
|
|
if ("0".equals(result.get("code"))) {
|
|
|
Object returnData = result.get("returnData");
|
|
@@ -310,7 +317,7 @@ public class DataProcessService {
|
|
|
logData.put("endtime", dateTime);
|
|
|
logData.put("serviceid", finalServiceId);
|
|
|
String string = DataFormatUtil.toString(resource);
|
|
|
- System.out.println("resources:"+string);
|
|
|
+ System.out.println("resources:" + string);
|
|
|
logData.put("inputdata", string);
|
|
|
logData.put("prepesource", DataFormatUtil.toString(preResource));
|
|
|
logData.put("returnmessage", finalMessage);
|
|
@@ -326,7 +333,7 @@ public class DataProcessService {
|
|
|
DATA_BASE.update(Config.getCenterConnectionStr(), """
|
|
|
update servicestate
|
|
|
set lasttime = ?,workpath = ?
|
|
|
- where serviceid=? and containercode=?""", LocalDateTime.now(), new File(".").getAbsolutePath(), finalServiceId1, Config.getContainerCode());
|
|
|
+ where serviceid=? and containercode=?""", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyy-MM-dd HH:mm:ss")), new File(".").getAbsolutePath(), finalServiceId1, Config.getContainerCode());
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
@@ -352,7 +359,7 @@ public class DataProcessService {
|
|
|
}
|
|
|
// JS表达式
|
|
|
case "2", "JS" -> {
|
|
|
- return JsScriptEngineUtil.eval(DataFormatUtil.toString(parameters.get(0)), parameters.subList(1, parameters.size()).toArray());
|
|
|
+ return JsScriptEngineUtil.eval(parameters.toArray());
|
|
|
}
|
|
|
// 数据库
|
|
|
case "3", "DB" -> {
|