I need to perform certain operations on a class after it was unmarshalled (after it is constructed by JAXB, rather then by myself).
Is there such a functionality in JAXB?
If not, how could I achieve it?
|
I need to perform certain operations on a class after it was unmarshalled (after it is constructed by JAXB, rather then by myself). Is there such a functionality in JAXB? If not, how could I achieve it? |
|||||||||||||||
|
|
You can use the 'class defined' event callbacks.
Read more here http://java.sun.com/javase/6/docs/api/javax/xml/bind/Unmarshaller.html#unmarshalEventCallback
//This method is called after all the properties (except IDREF) are unmarshalled for this object,
//but before this object is set to the parent object.
void afterUnmarshal( Unmarshaller u, Object parent )
{
System.out.println( "After unmarshal: " + this.state );
}
|
|||
|
|
|
Though the the demanded functionality seems not to be present in JAXB, I managed to achieve something which goes into the right direction:
Tested. Works. Here is the code. Sorry, I'm using some external reflection API to get all methods, but I think the idea is understandable: Implementation
EDIT UsageHere is how the concept might be used.
Filed a feature request |
|||||
|
|
It's not a 100% solution, but you can always register a The downside would be that you have to serialize the class yourself (?). I am not aware of any simple way of accessing and calling the default serialization mechanism. But with custom [ |
|||
|
|