Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple restful WS on top of a jpa entity created using the net beans wizards and hosted in glassfish 3.1.2.

When calling the WS only fields with data are returned. Null value fields are omitted from the Jason or XML.

I have tried using @xmlelement(required=true) but this is ignored.

Where should I begin to investigate or is this a simple setting that needs to be applied.

Thanks all hints welcome

share|improve this question
Why would you want fields with no data to be returned? – thedan Nov 19 '12 at 23:15
We are using knockoutjs and binding based on the generated Jason object. Whilst we could craft the binding I investigating how much development resource is required in each tier of the app. – aurawibbler Nov 19 '12 at 23:21

2 Answers

If you have class:

public class MyClass{

 private String str1 = "a";
 private String str2 = null;
 }

The Json view should be {str1:"a"}

Json never returns field with value null, only if someone typed like: str2="null";.

share|improve this answer
I was expecting empty string or a js undefined. The knockoutjs fails when the mapped field is missing from the Jason object – aurawibbler Nov 19 '12 at 23:24
empty String is wrong. it would have as if someone typed str2=""; – zaske Nov 20 '12 at 6:48

I would like to add on @Maxim Shostuin answer:
Think of the following scenario:
A. someone serializes your object (with null field).
B. this stirng is sent to a client that performs deserialization.
C. Since there is no indication for the null field there, the object created will contain the default value for the field (0 for int, null for non primitive) which in your case is null.
So this shows you this is the correct behavior.
I also encountered this issue at Ovirt open source project,
where I stored json serialization of some entities, and then these entities got changed in their structures, when I deserialized, I did not have errors, the new fields simply got null values,
and I believe this is a correct behavior.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.