Boon - @JsonInclude

@JsonInclude viene utilizzato per includere proprietà con valori null / vuoti o predefiniti. Per impostazione predefinita, Boon ignora tali proprietà durante la serializzazione / de-serializzazione.

Esempio: @JsonInclude

L'esempio seguente è per @JsonInclude -

import org.boon.json.JsonFactory;
import org.boon.json.ObjectMapper;
import org.boon.json.annotations.JsonInclude;

public class BoonTester {
   public static void main(String args[]) {
      ObjectMapper mapper = JsonFactory.createUseAnnotations( true );     
      Student student = new Student(1,null);  
      String jsonString = mapper.writeValueAsString(student);
      System.out.println(jsonString);    
   }
}
class Student {
   public int id; 
   @JsonInclude
   public String name;

   Student(int id, String name) {
      this.id = id;
      this.name = name;
   }
}

Produzione

Quando lo script viene eseguito correttamente, vedrai il seguente output:

{"id":1,"name":null}