hi
I try to use activiti explore with postgresql,but the editor was not worked with error:
com.fasterxml.jackson.core.JsonParseException: Unexpected character ('j' (code 106)): expected a valid value (number, String, array, object, 'true', 'false' or 'null')
at [Source: java.io.StringReader@1c0a9d95; line: 1, column: 2]
Then i found this code thrown the exception:
ObjectNode editorJsonNode = (ObjectNode) objectMapper.readTree(
new String(rs.getModelEditorSource(model.getId()), "utf-8"));
how can i fix this error?
Someone can help me ??