show/hide this revision's text 3 edited tags; edited title

JAXB Marhsalling Marshalling with null fields.

show/hide this revision's text 2 Markdown code blocks

Hello,

This is a pretty simple request, but I just didn't find a way to do it.

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 :

@XMLRootElement
Class Foo {
   Integer num;
   Date date;
….
}

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 :

123

<foo>
  <num>123</num>
  <date></date>
</foo>

Thanks,

Jalpesh.

show/hide this revision's text 1

JAXB Marhsalling with null fields.

Hello,

This is a pretty simple request, but I just didn't find a way to do it.

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 :

@XMLRootElement Class Foo { Integer num; Date date; …. }

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 :

123

Thanks,

Jalpesh.