2022-10-29から1日間の記事一覧

Jackson シリアライズで、null オブジェクトを出力させない

一律に全て、null オブジェクトを出力させない import com.fasterxml.jackson.annotation.JsonInclude.Include; Include.NON_NULL を設定する。 ObjectMapper mapper = new ObjectMapper(); mapper.setSerializationInclusion(Include.NON_NULL);