Generates Java bean classes(POJO) from XML. Take XML string as input and produces POJO ( java bean classes).
Click
Here To Watch A Demo On It(https://youtu.be/lKv-B6T2sqI).
How It Works:
It first validate the input XML content and analyse it. It extracts the
element and attributes and its values from the XML. Convert the xml
element to Java class and add attributes as class variables to the Java
classes.
. Parameters are:
- XML : Source XML content.
- Bean Class Postfix: Java bean class postfix name. default
value is 'bean'
- Intended to use in Webservice: If it is checked, it add JAXB
annotation in the generated POJO / Bean class.
Steps To Use Converter:
- Copy your XML string inside the first text box (XML:)
- Enter your POJO / Bean class name prefix. e.g. bean
- Check the the check-box if you would like to add JAXB
annotation in the Java class
- Click 'Generate POJO / Bean' button to start
generating POJO / Bean objects.