Spec-Zone .ru
спецификации, руководства, описания, API
Introduction to JAXB
Trail: Java Architecture for XML Binding (JAXB)

Lesson: Introduction to JAXB

Java Architecture for XML Binding (JAXB) provides a fast and convenient way to bind XML schemas and Java representations, making it easy for Java developers to incorporate XML data and processing functions in Java applications. As part of this process, JAXB provides methods for unmarshalling (reading) XML instance documents into Java content trees, and then marshalling (writing) Java content trees back into XML instance documents. JAXB also provides a way to generate XML schema from Java objects.

JAXB 2.0 includes several important improvements to JAXB 1.0:

This lesson describes the JAXB architecture, functions, and core concepts, and provides examples with step-by-step procedures for using JAXB.


Problems with the examples? Try Compiling and Running the Examples: FAQs.
Complaints? Compliments? Suggestions? Give us your feedback.

Previous page: Table of Contents
Next page: JAXB Architecture