简体   繁体   中英

Reporting framework for Google App Engine

All, Is there a proven working reporting framework for GAE that 1) It's lightweight 2) It can aggregate data from Cloud SQL (JPA) 3) It's java base

Amir

It is unusual to need reporting but not have specific output format requirements. If you are looking to dump XML or CSV, then you should simply write your cloud query, extract the ResultSet data and return the data in the format you need - just custom code. If you want to produce reports in PDF for example, I would use iText or Docmosis to create the documents. With iText your code would extact the ResultSet and build the PDF document. With Docmosis you would work the same way, or pass the ResultSet to Docmosis to extract on your behalf, but your template would create your format.

Either way, the JPA / Cloud SQL is part of your application code. Please note I work for the company that created Docmosis.

I hope that helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM