Boon-jsoninclude

提供:Dev Guides
移動先:案内検索

ブーン-@JsonInclude

@JsonIncludeは、null/空またはデフォルト値を持つプロパティを含めるために使用されます。 デフォルトでは、Boonはシリアル化/逆シリアル化中にそのようなプロパティを無視します。

例-@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;
   }
}

出力

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