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 works based on the input XML. Check the validate the input XML
content and analyse it. Findout entity and attribute names from the
element and attribute name of the input xml. Generate Java classess and
instance variables from entity defination. public setter and getter
methods for all the instance variables are also generate for each bean
class. Override the the toString() method also. classes.
. Parameters are:
- XML : Source XML content.
- Base Package Name: Java class base package name.
- Sub Package Name: Java class sub package name
- Wrap class name: Wrapper class name
- JAXB Annotation: 'Y' if its checked
Steps To Use Converter:
- Copy your XML string inside the first text box (XML:)
- Enter base package name. e.g. bean
- Check the the check-box if you would like to add JAXB
annotation in the Java class
- Enter Sub Package Name.
- Enter Wrapper class name.