We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionI'm searching for a framework which allows to generate pdf files from java beans or data sources using xml as configuration file. (In fact data interface will be the same but document's structure or style may change on runtime). I've considered using iText for this purpose but it requires to write java code for eac开发者_开发知识库h document type. Maybe there's some wrapper for this lib available?
You do not want to code i Java to get PDF ro the problem is there is too many possible document types ? Standardize on document type and then consider using either iText or XSL (Apache FOP?). As for wrapper for Java objects, you can use reflection to make yourself generic one.
精彩评论