Created
March 21, 2020 11:48
Revisions
-
seunggabi created this gist
Mar 21, 2020 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ public static String mapToJson(Map map, boolean isPretty) { ObjectMapper mapper = new ObjectMapper(); try { return isPretty ? mapper.writerWithDefaultPrettyPrinter().writeValueAsString(map) : mapper.writeValueAsString(map); } catch (JsonProcessingException e) { return ""; } }