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

Can anyone please tell how to generate the ObjectFactory class from some Java beans ? Remember , I dont have the xsd and hence I cannot use JAXB for the same.

share|improve this question

1 Answer

The only class generation that JAXB (JSR-222) implementations do is from XML schema. When starting from Java classes you just need to create a class and annotate it @XmlRegistry. You will need to include this class in the array of classes used to bootstrap the JAXBContext. The main reason for doing this is to leverage the @XmlElementDecl annotation to associated multiple root elements with a class. Is this what you are trying to do?

share|improve this answer
Dear Blaise, Can I have an example of this? I dont have an xsd. I just have Java bean classes. – user1752663 Oct 18 '12 at 12:45
@user1752663 - Here you go: blog.bdoughan.com/2012/07/jaxb-and-root-elements.html – Blaise Doughan Oct 18 '12 at 14:19

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.