https://github.com/urunov/converter-soap-xml-json-binding-framework
SOAP, REST, XML, JSON, XML Marshaliing, XML UnMarshalling
https://github.com/urunov/converter-soap-xml-json-binding-framework
Last synced: about 1 month ago
JSON representation
SOAP, REST, XML, JSON, XML Marshaliing, XML UnMarshalling
- Host: GitHub
- URL: https://github.com/urunov/converter-soap-xml-json-binding-framework
- Owner: Urunov
- Created: 2022-12-26T05:35:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-26T07:19:57.000Z (over 2 years ago)
- Last Synced: 2025-01-25T07:27:36.023Z (3 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Converter-SOAP-XML-JSON-Binding-Framework
## Using the Spring's Object/ XML Mapping, we can convert Object to XML or vise versa.* XML Marshalling - Convert Object to XML.
* XML UnMarshalling - Convert XML to Object.
SOAP, REST, XML, JSON, XML Marshaliing, XML UnMarshalling## JAXB:
1. JAXB stands for Java Architecture for XML Binding.
2. JAXB provides mechanism to marshal java objects into XML and Unmarshal XML into Java Object.## @XmlRootElement:
The name of the root XML element is derived from the class name. We can also specify custom name for the root elemnt of the XML by using its name attribute.
## @XmlElement:
XML element is used to define a specific name for Object property which will be used in XML.## @XmlAttribure:
XML attribute is used for defining attributes which can be added in Root element.## @XmlType:
For specifiying order of elements which will be followed while writing data into the XML file.