Jackson で気が向いた時だけ一部フィールドの出力をしない
Jackson でオブジェクトを JSON にシリアライズするときに、一部フィールドはシリアライズしたくないときは、フィールドやメソッドに @JsonIgnore を使います。
普段はシリアライズするけど、場合によってはシリアライズしたくない、といったケースでは、無視したいところだけ @JsonIgnore したインターフェースを作って、それを mix-in するときれいにできます。
JUnit向け検証コード
static class Obento {
private final String syusyoku;
private final String syusai;
private final String fukusai;
private final int price;
public Obento(String syusyoku, String syusai, String fukusai, int price) {
this.syusyoku = syusyoku;
this.syusai = syusai;
this.fukusai = fukusai;
this.price = price;
}
public String getSyusyoku() { return syusyoku; }
public String getSyusai() { return syusai; }
public String getFukusai() { return fukusai; }
public int getPrice() { return price; }
}
static interface OgoriView {
@JsonIgnore String getPrice();
}
@Test public void test() {
Obento o = new Obento("しろめし", "カレー", "福神漬", 780);
{
ObjectMapper mapper = new ObjectMapper();
System.out.println(mapper.valueToTree(o).toString());
// {"syusyoku":"しろめし","syusai":"カレー","fukusai":"福神漬","price":780}
}
{
ObjectMapper mapper = new ObjectMapper();
mapper.getSerializationConfig().addMixInAnnotations(Obento.class, OgoriView.class);
System.out.println(mapper.valueToTree(o).toString());
// {"syusyoku":"しろめし","syusai":"カレー","fukusai":"福神漬"}
}
}
View なんてのもありますが、一部だけ出力しないというケースには向いてません。上の例では getPrice 以外の全てのフィールドにビューのアノテーションを書かないといけなくなります。
参考:
Author And Source
この問題について(Jackson で気が向いた時だけ一部フィールドの出力をしない), 我々は、より多くの情報をここで見つけました https://qiita.com/rch850/items/30825e6ff0811fdc011d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .