Commit 9ada3c7a authored by simon824's avatar simon824
Browse files

Using Jackson instead of Fastjson

parent 32863755
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -279,11 +279,16 @@ public class ProcessDefinition {
    }

    public void setGlobalParams(String globalParams) {
        if (globalParams == null){
            this.globalParamList = new ArrayList<>();
        }else {
            try {
            this.globalParamList = JSONUtils.getMapper().readValue(globalParams, new TypeReference<List<Property>>() {});
                this.globalParamList = JSONUtils.getMapper().readValue(globalParams, new TypeReference<List<Property>>() {
                });
            } catch (IOException e) {
                logger.error("json parse exception!", e);
            }
        }
        this.globalParams = globalParams;
    }