6

我正在发送JsonObject使用网络服务。接收调用的方法具有模型对象的方法参数,用于 JsonObject传递相应的输入。已 JsonObject成功转换为模型对象,但我无法测试来自模型对象的一些响应。

例如:如果输入 JSON 中缺少任何必填字段,或者输入 JSON 中的任何字段设置为null,那么在这两种情况下,模型对象字段都是null

我无法检测null是因为字段丢失还是字段设置为null.

有人可以建议我一个解决方案吗?

我最后的出路是,我将接收方法参数输入String而不是我的模型对象,然后使用条件检查,检查输入字符串并相应地获取我的响应。但是我的 JSON 输入对象非常大,我希望有比这更好的方法。

这是一个 Spring Boot 项目。

代码片段:

JSON Object being sent

{"orgType":null, "orgLocation": "Geneva" , //other fields}


@RequestMapping(value="/addOrganizations", method= RequestMethod.POST)
public ResponseEntity addOrganization(@RequestBody Organization organization){
// code goes here
}

如果我尝试

{"orgType":null, "orgLocation": "Geneva" , //other fields}

或者:

{"orgLocation": "Geneva" , //other fields}

并在方法内部使用调试器进行检查addOrganization(),然后null在这两种情况下都存在值。

型号类:

public class Organization{

@JsonInclude(JsonInclude.Include.NON_EMPTY)
private String orgType;

private String orgLocation;

// other fields and getters and setters.

}
4

1 回答 1

4

我正在浏览 StackOverflow 的链接,最后通过这个链接得到了答案

杰克逊:如果财产丢失怎么办?

思想可能对其他人有帮助。

谢谢

于 2017-12-26T13:51:00.403 回答