I have to parse a complex XML document. Some of classes in my model implement interface HasDate:
interface HasDate {
public void setDate(Date date);
}
The date is known when unmarshaller is created:
// here I know the date.
JAXBContext ctx = JAXBContext.newInstance("com.mycompany.mymodel");
Unmarshaller unmarshaller = ctx.createUnmarshaller();
unmarshaller.unmarshal(input);
I would like to call setDate() for each instance of class that implements HasDate while JAXB is parsing the document.
Here are 2 solution I know myself: I can annotation each relevant class as following:
@XmlType(factoryClass = ObjectFactory.class, factoryMethod = "createMyObject")
The method createMyObject() will call setDate(). The problem with this solution is that createMyObject() must be static. Setting information as static member makes solution not thread safe.
As a variant of this solution I can put the date to ThreadLocal just before parsing. createMyObject() will read date from ThreadLocal and call setDate(). This solution is thread safe but looks like a patch.
Other solution is to discover the object graph created by JAXB using reflection, traverse it recursively and call setDate() when needed. This solution is thread safe but requires some implementation efforts and needs maintenance in future.
I wonder whether JAXB has other, built-in solution for this problem.