Home > database >  Handling empty JSON
Handling empty JSON

Time:02-27

I need to send following JSON in API BODY POST request:

{
    "name": "",
    "type": "TEMP",
    "shared": false,
    "search": {       
    },
    "order": [
    ]
}

In my MainBody.java, declared

private String name;
private String type;
private boolean shared;
private JSON search;
private Object order;

and defined getters and setters.

In Payload.java,

    MainBody mb = new MainBody();
    mb.setName("");
    mb.setType("TEMP");
    mb.setShared(false);
    mb.setSearch(null);
    mb.setOrder(new ArrayList<>());
    
    ObjectMapper om =  new ObjectMapper();
    
    String myData = om.writerWithDefaultPrettyPrinter().writeValueAsString(mb);
    System.out.println(myData);

results

{
  "name" : "",
  "type" : "TEMP",
  "shared" : false,
  "search" : null,
  "order" : [ ]
}

Please assist with how search as { } can be achieved as per expected JSON instead of null.

TIA.

CodePudding user response:

Instead of setting search to null, you need to set it to an empty object. I'm not sure which JSON library you are using, but there should be an object constructor like new JsonObject(). Depending on what the allowed values for search are, you may also want to consider representing it in your class as Map<String, String> or something like that.

CodePudding user response:

I would try something like this:

    mb.setSearch(new JSON());

This way you create empty object and there should be only {}. It also depends on which JSON library do you use.

  • Related