I have the following method and want to avoid having to explicitly show the JAXBElement<> syntax. Is there some sort of annotation that would allow the method to appear to accept raw MessageResponse objects but in actuality work the same as shown below? I'm not sure how clear that was so I'll say this: I'm looking for some syntactic sugar :)

    @ServiceActivator
public void handleMessageResponse(JAXBElement<MessageResponse> jaxbResponse) {
    MessageResponse response = jaxbResponse.getValue();
    MessageStatus status = messageStatusDao.getByStoreIdAndMessageId(response.getStoreId(), response.getMessageId());
    status.setStatusTimestamp(response.getDate());
    status.setStatus("Complete");
}
link|improve this question

@XmlRootElement in MessageResponse? – lexicore Apr 23 '10 at 22:48
This question is in no way related to Spring MVC, please edit the title and tags. – iwein May 27 '10 at 15:00
feedback

1 Answer

up vote 0 down vote accepted

You can use the unmarshalling transformer described in the reference guide here.

Adapted from the documentation (usable in a chain):

<si-xml:unmarshalling-transformer unmarshaller="unmarshaller" />

This should give you a domain object as the message payload.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.