I'm a bit of a newbie to XML. I have a class that creates an xml file (using Jaxb). So I have an existing xml file which contains the following.
<bookList>
<book>
<title> Grapes of Wrath </title>
<author> John Steinbeck </author>
</book>
<book>
<title> Harry Potter </title>
<author> J.K. Rowling </author>
</book>
<bookList>
In my Java code, I can create a new Book object no problem. But how so I add a new book with all the attributes inside the bookList block? Can I do that in Jaxb or do I need to use something else?