Java Architecture for XML Binding: differenze tra le versioni

Contenuto cancellato Contenuto aggiunto
Fripp (discussione | contributi)
Nuova pagina: <--'''Java Architecture for XML Binding''' ('''JAXB''') allows Java developers to map Java classes to XML ...
 
Fripp (discussione | contributi)
Nessun oggetto della modifica
Riga 1:
<!--'''Java Architecture for XML Binding''' ('''JAXB''') allows [[Java (programming language)|Java]] developers to map Java [[class (computer science)|classes]] to [[XML]] representations. JAXB provides two main features: the ability to [[serialization|''marshal'']] Java [[object (computer science)|objects]] into XML and the inverse, i.e. to ''unmarshal'' XML back into Java objects. In other words, JAXB allows storing and retrieving data in memory in any XML format, without the need to implement a specific set of XML loading and saving routines for the program's class structure.
 
JAXB is particularly useful when the specification is complex and changing. In such a case, regularly changing the [[XML Schema (W3C)|XML Schema]] definitions to keep them synchronised with the Java definitions can be time consuming and error prone.