any experiences creating pdfs programmatically in Grails using some of the numerous java libs available ? Snippets are welcomed !

Thanks

link|improve this question

Thanks for your contributions, I opted for iText. – xain Feb 20 '10 at 0:33
feedback

6 Answers

Grails Rendering Plugin is the best option out there.

You just do a GSP (HTML+CSS) and it simply give you a PDF! Simple and fast!

Best regards!

link|improve this answer
feedback

you can try the plugins Dynamic Jasper or the jasper plugin. The Dynamic Jasper plugin generates reports of your domain-class pretty simple, allowing customization of the reports. The Jasper plugin has tags to manipulate reports. The links contains snippets and samples.

link|improve this answer
feedback

I haven't used this but if your looking to generate a PDF version of your view instead of html look at this plugin. If you want to convert existing HTML into PDF look at this If you want to generate custom PDF documents that arn't closely based on your views or domain classes you can check out IText for the ability to generate complex documents.

link|improve this answer
feedback

Another option is using any XSL-FO rendering library like Apache FOP.

link|improve this answer
feedback

There's also the Export plugin which - besides PDF - generates CSV, Excel, ODS (Open Document Spreadsheets), RTF and XML.

link|improve this answer
feedback
up vote 0 down vote accepted

Opted for iText, worked just fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.