我正在一个使用Java/EJB/JPA/thorntail/wildfly的遗留系统中工作。
该项目包括:
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>jaxrs-jsonb</artifactId>
<version>2.6.0.Final</version>
</dependency>
JSON-B根据JSR-367提供对JSON处理的支持。
我需要在API/Rest中发送空值。任何类似于x1m0 n1Jackson。
我需要的示例:
PersonApi with name=Any, age=null
{
"name": "Any",
"age": null
}
有没有一些配置来做这件事?...一些注解,一些配置来加载和解决它?
1条答案
按热度按时间mnemlml81#
可以使用
javax.json.bind.annotation.JsonbNillable
注解: