1
サーバーサイド(Tomcat + gwt)でJasperReportを作成する必要があります。 私はハロー世界ジャスパーレポートサーバー側の保存
public class AuthorReport {
public static void generate() {
try {
String reportSource = "resources/authorReport.jasper";
JasperReport jasperReport = JasperCompileManager
.compileReport(reportSource);
JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport,
new HashMap(), new JREmptyDataSource());
JasperExportManager.exportReportToHtmlFile(jasperPrint, "hello_report.html");
} catch (Exception e) {
e.printStackTrace();
}
}
}
を実行しようと私は例外を取得しませんが、生成されたファイルと、それがすべてで生成されているかどうかがどこにあるか私が実現傾けます。
多分私は何とかTomcatとJasperReportsを統合する必要がありますか?
SimpleFileResolverのパスはどのようにする必要がありますか? –
サーバー側の絶対パスまたは相対パス。 – bugske