Saturday 20 August 2016

Introduction To JAXB

JAXB stands for Java Architecture for XML Binding. It provides convenient and efficient way to bind Java object to XML and XML to Java Object. Technically this process is called Marshalling and Unmarshalling.

What is Marshalling?
Process of mapping Java object to XML Document

What is Unmarshalling?
Process of mapping XML document to Java object.

Can I generate XML schema from Java class?
Yes, JAXB also provides a way to generate XML schema from Java class.

Can I generate Java classes from XML schema?
Yes, You can do that.


Previous                                                 Next                                                 Home

No comments:

Post a Comment