Yann Zaoui
10/10/2018, 4:51 AMContentTransformationException
when receiving my custom parameters class with missing fields, but instead Gson is assigning `0`/`null` to missing fields, so no exception is thrown. Jackson seems to have a @JsonProperty(required = true)
annotation, but I'd rather not repeat that everywhere if there's a better solution.gildor
10/10/2018, 5:52 AMYann Zaoui
10/10/2018, 6:17 AMgildor
10/10/2018, 6:24 AMgildor
10/10/2018, 6:37 AMgildor
10/10/2018, 6:38 AMgildor
10/10/2018, 6:39 AMnull
as value of some field, in this case Gson will set null thereYann Zaoui
10/10/2018, 4:09 PM