Reputation: 2203
I'm working on creating a PDF bill report in java. I tried crystal reports, jasper reports but they require database connectivity. I'm looking on how to create reports using XML as a datasource. If anyone has worked on this before please guide me on how to proceed.
Upvotes: 0
Views: 899
Reputation: 64650
Jasper reports don't need a database connection. They can use a collection of Java beans as their input. Transform the XML data source into custom Java objects or maps and pass them to a report.
Upvotes: 2