Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a fully annotated class and multiple xsds(each with a different set of fields) and i wish to marshal according to the different xsds using the same class.

i would like to be able to control the marshaling/unmarshaling process and filter out some fields according to the xsd.

btw i am using cxf. thanks,

share|improve this question

1 Answer

up vote 0 down vote accepted

Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.

If you use MOXy as your JAXB provider then you could have the model mapped to one XML schema via the standard annotations, and then adjust the mappings to match the other XML schemas using MOXy's external mapping document (see: http://blog.bdoughan.com/2010/12/extending-jaxb-representing-annotations.html).

  1. JAXBContext #1 - Created based on annotations to match schema #1
  2. JAXBContext #2 - Created based on annotations and mapping file #1 to match schema #2
  3. JAXBContext #3 - Created based on annotations and mapping file #2 to match schema #3

The mapping file also allows you to have the annotations completely ignored if one of your schemas bares little resemblance to the others.

share|improve this answer
I don't want to limit myself to a specific implementation. I am looking for something that is more standard, if possible. – user967710 Nov 18 '12 at 12:53
@user967710 - You could use an XmlAdapter approach like the following except using adapters at the type rather than property level: stackoverflow.com/questions/13094195/… – Blaise Doughan Nov 18 '12 at 12:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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