With this object for example :
public class Person {
@XmlAttribute
private String name = null;
@XmlElement
private Address address = null;
// getters and setters
}
XML file :
<person name="blabla">
<address>...</address>
</person>
What can I do if I want to load a complete Person object (name + address) when umarshalling but only saving its name when marshalling ? (i.e. not saving the address)
The easiest would be to make a copy and remove unnecessary data.
Another (much more complicated option) option would be to defined different mappings. This is possible with MOXy:
Here you define two sets of mappings -
base
plus eithertenant1
ortenant2
. Thus you create two contexts. You can unmarshal with one and marshal with another.