Skip to content

Instantly share code, notes, and snippets.

@arnaudjolly
arnaudjolly / intellij_debug_watcher_export_json.java
Created February 28, 2018 16:53
Intellij debug watcher: export object to json
new ObjectMapper()
.setSerializationInclusion(JsonInclude.Include.NON_NULL)
.writerWithDefaultPrettyPrinter()
.writeValueAsString( myObject )