When exporting to JSON export it with pretty text

This commit is contained in:
George Kalampokis 2020-04-22 18:43:19 +03:00
parent 0c443dfeba
commit 05e2374f97
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class RDAManager {
ObjectMapper mapper = new ObjectMapper();
mapper.setDateFormat(new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss Z"));
result = mapper.writeValueAsString(rdaDmp);
result = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(rdaDmp);
return result;
}