I have a web app with REST services. I have a bean class with JAXB annotations:
@XmlRootElement(name = "foo")
class Foo {
@XmlElement
private String bar1;
@XmlElement
private Double bar2;
@XmlElement
private Double bar3;
}
Then, I send request with JSON:
{
"foo" : {
"bar1" : "1",
"bar3" : ""
}
}
In the request I want: to update value bar1, and set null to the value bar3
But, on the server, I have class' fields both with null, I mean, that bar2 is null, because I didn't send it and bar3 is null too, because I sent it empty. Question is: how can I understand on the server which param was sent for setting null in it, and which param was not sent and I should just to ignore it?