如何包含多个注释

示例我想包括这样的东西。一个是自定义,另一个是非null?如何处理

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

最佳答案

你不能。
您的PositiveIntegerFilter必须以所需的方式处理null。

10-08 13:08