Generate XML having repeated parent tags from JSON
I am using XmlMapper in Java to create XML from JSON The required XML structure is: <Months> <Month>May</Month> <Month>August</Month> <Month>November</Month> <Month>February</Month> </Months> How should my JSON look like to have the above format of XML? I tried my JSON as…