简体   繁体   中英

Jackson: JsonInclude how to add Multiple JsonInclude annotation

how to include multiple annotations

Example I want to include something like this. One is custom another is non null? how to handle this

@JsonInclude(JsonInclude.Include.NON_NULL) 
@JsonInclude(value = JsonInclude.Include.CUSTOM, valueFilter = PositiveIntegerFilter.class)

You cant. Your PositiveIntegerFilter have to handle nulls the way you want.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM