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

How can I avoid field from being serialized? I use xml attributes. Currently field has no attribute but gets to xml...

share|improve this question

2 Answers

up vote 3 down vote accepted

Annotate the field you want to exclude with @XmlTransient.

share|improve this answer

Option #1 - Change the Accessor Type

By default a JAXB (JSR-222) implementation will treat all public fields and properties as being mapped. If you want to restrict this to just public properties then you can do the following:

@XmlAccessorType(XmlAccessType.PROPERTY)
public class Foo {

    public int bar; // Not considered mapped if access type is set to PROPERTY

}

Option #2 - Specify the Field is Unmapped

You can mark a field/property with @XmlTransient to prevent it from being mapped.

public class Foo {

    @XmlTransient
    public int bar; // Not considered mapped

}
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.