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

Suppose i have an object

@XmlRootElement(name = "publisher")
class Person
{
 @XmlElement(required = true)
 int id;
 @XmlElement(required = true)
 String name;
}

I want to generate like

<person>
<id>1</id>
<name>test</name>
</person>

Suppose if the name is test10 I dont want that item in my xml. Anyways to implement this.

share|improve this question
1  
if (!"test10".equals(person.getName()) { marshaller.marshal(person);}. Did I miss something? – JB Nizet Nov 10 '11 at 8:09
1  
Do you want to skip just the name element or the complete person/publisher? – forty-two Nov 10 '11 at 8:54

1 Answer

You could do the following:

Use Case #1 - Not Marshal Person Object Based on Name Element

If Person is Root Object

If Person is the root object then you can do the following as suggested by JB Nizet in the comments on this question.

if (!"test10".equals(person.getName()) { 
    marshaller.marshal(person);
}

If Person is a Referenced Object

If Person is not the root object then you could use an XmlAdapter for this use case. It would look something like the following:

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class PersonAdapter extends XmlAdapter<Person, Person> {

    @Override
    public Person unmarshal(Person person) throws Exception {
        return person;
    }

    @Override
    public Person marshal(Person person) throws Exception {
       if(mull == person || "test10".equals(person.getName()) {
           return null;
       }
       return person;
    }

}

The XmlAdapter is specified using the @XmlJavaTypeAdapter annotation. This annotation can be configured at the field/property, type, and package levels. For examples see:

Use Case #2 - Not Marshal Name Element Based On its Value

If you just want to avoid marshalling the name element based on its value then again you could use an XmlAdapter:

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class NameAdapter extends XmlAdapter<String, String> {

    @Override
    public String unmarshal(String string) throws Exception {
        return string;
    }

    @Override
    public String marshal(String string) throws Exception {
       if("test10".equals(string) {
           return null;
       }
       return string;
    }

}

Your Person class would look like:

@XmlRootElement(name = "publisher")
class Person
{
 @XmlElement(required = true)
 int id;
 @XmlElement(required = true)
 @XmlJavaTypeAdapter(NameAdapter.class)
 String name;
}
share|improve this answer
+1. I've learnt something new. Doesn't the last adapter conflict with the fact that name is required? Using it would lead to invalid XML, wouldn't it? – JB Nizet Nov 10 '11 at 11:33
@JBNizet - Thank you for the up vote. You are correct that the last adapter would allow you produce a document that was invalid to the XML schema that would be generated from the annotated classes. Whether or not that is a problem depends on the users application. Many people do not perform schema validation, and view an XML schema more as a guideline than a strict set of rules. – Blaise Doughan Nov 10 '11 at 11:39

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.