Hello All,
I have the following input file for xml:
POJO will have the following properties: Name, Make, Price, Date.Code:<Cars location="INDIA" marketTime="CLOSE" Date="2011-05-20"> <Car name="SKODA" make="2006" price="15000"/> <Car name="AUDI" make="2008" price="18000"/> <Car name="BMW" make="2005" price="16000"/> </Cars>
Question1: How can I read such a file using spring batch?
Question2: How to include date also in the POJO which is an attribute of the Main tag? Question3: Each tag is an object with attributes as properties. How to read it?
Thanks!!
Nikunj


Reply With Quote
