0
は、次のクラスを考えてみましょう:@JsonIgnoreのプロパティと注釈のないプロパティの違いは何ですか?
private static class Widget {
@JsonProperty
private String id = "ID";
@JsonIgnore
private String jsonIgnored = "JSON_IGNORED";
private String noAnnotation = "NO_ANNOTATION";
}
私はジャクソンを使用して、これをシリアル化した場合、私はこの文字列で終わるだろう:
{"id":"ID"}
@JsonIgnore
なし注釈付き1とプロパティの違いは何ですか?