JAXB Marshalling with null fields. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:00:40Z http://stackoverflow.com/feeds/question/858598 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/858598/jaxb-marshalling-with-null-fields 2 JAXB Marshalling with null fields. Jalpesh 2009-05-13T15:16:39Z 2009-05-13T22:55:12Z <p>Hello,</p> <p>This is a pretty simple request, but I just didn't find a way to do it.</p> <p>I'm basically trying to set up a role in JAXB which says that whenever an null field is encountered, instead of ignoring it in the output, set it to an empty value. So for the class :</p> <pre><code>@XMLRootElement Class Foo { Integer num; Date date; …. } </code></pre> <p>When this has been marshalled into the XML file if the date field is null, my output does not have that element in it. What I want to do is include all the fields in the output; and if they are null, replace them with - say a blank. So the output should be :</p> <pre><code>&lt;foo&gt; &lt;num&gt;123&lt;/num&gt; &lt;date&gt;&lt;/date&gt; &lt;/foo&gt; </code></pre> <p>Thanks,</p> <p>Jalpesh.</p> http://stackoverflow.com/questions/858598/jaxb-marshalling-with-null-fields/858641#858641 0 Answer by Chris Jester-Young for JAXB Marshalling with null fields. Chris Jester-Young 2009-05-13T15:28:50Z 2009-05-13T15:28:50Z <p>But but but...a empty string is not a valid lexical representation for a date, so you can't do that. i.e., if you generated an XML document with an empty value for a date field, it won't validate properly.</p> <p>In other words, if your <code>date</code> element has a <code>minOccurs</code> of 1 or more and not <code>nillable</code>, then you absolutely must have (1 or more) dates, which can't be null (or blanks, or other non-values).</p> http://stackoverflow.com/questions/858598/jaxb-marshalling-with-null-fields/859061#859061 0 Answer by Chris Dail for JAXB Marshalling with null fields. Chris Dail 2009-05-13T16:45:11Z 2009-05-13T16:45:11Z <p>As indicated in the other answer is invalid since it is not a valid date. I had a similar issue where I wanted to handle (same as ) specially. Since you cannot use null, you can use the default value mechanism in JAXB. The following will default the value if none is specified. You can through code detect this special date and handle this exception case.</p> <pre><code>@XmlElement(defaultValue="1970-01-01T00:00:00.0-00:00") </code></pre> <p>So it is possible to detected and empty date value but you just cannot use null to do it.</p> http://stackoverflow.com/questions/858598/jaxb-marshalling-with-null-fields/860830#860830 1 Answer by Jalpesh for JAXB Marshalling with null fields. Jalpesh 2009-05-13T22:55:12Z 2009-05-13T22:55:12Z <p>Thanks guys for your answers.</p> <p>Chris Dail - I tried your approach, and it didn't really do what I wanted. JAXB was still ignoring my null values, inspite of defining a default value for my fields.</p> <p>I did stumble across the answer after somebody in jersey forums pointed me to a link :</p> <p>https://jaxb.dev.java.net/tutorial/section_2_2_12_8-No-Value.html#No%20Value</p> <p>Basically, all I had to do was to add the following to my fields :</p> <p>@XmlElement(nillable = true) </p> <p>Once I added that, JAXB would show up hose fields when marshalling them to XML like this :</p> <pre><code>... &lt;num&gt;5&lt;/num&gt; &lt;date xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/&gt; .... </code></pre>