How can I avoid field from being serialized? I use xml attributes. Currently field has no attribute but gets to xml...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
Option #2 - Specify the Field is Unmapped You can mark a field/property with
|
||||
|
|