Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using JAXB (2) is it possible to ensure that null values are not marshalled as () empty elements. For instance

@XmlRootElement(name = "root")
public class Root {
    @XmlElement(name = "name")
    protected String name;
}

Currently if name is null then I am marshalling

<root>
  <name/>
</root>

I would like to produce

<root>
</root>

instead.

share|improve this question
3  
You must've done something wrong somewhere - when name is null, JAXB will not marshal the element at all. Your field has to contain an empty String, rather than a null. – skaffman Dec 6 '09 at 22:29
Yeah, thanks for that. You were right and I had missed that. – Francis Stephens Dec 7 '09 at 21:19

1 Answer

up vote 1 down vote accepted

i think u have missed something.. as u marshal it ,the string u are passing must not be null as with string null is also an string.. so in my opinion u must pass empty string rather than null.

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.