How can I have JAXB call a method after it has completed unmarshalling an XML file into an object?

前端 未结 3 1314
有刺的猬
有刺的猬 2020-12-03 06:54

I am using JAXB to unmarshall an XML file into a Java object -- standard stuff. Once JAXB has completed this, I\'d like a method to be called on the newly created object.

3条回答
  •  天涯浪人
    2020-12-03 07:39

    To be able to execute code after unmarshalling took place, you need an Unmarshaller-Listener

    However, I'm not sure, if the listener is invoked after the properties are set or before.

    NOTE: The listener is available since JAXB-2.0 (JDK-6)

提交回复
热议问题