org.springframework.web.servlet.view.jasperreports |
Support classes for the integration of
JasperReports
as Spring web view technology.
Contains various View implementations for JasperReports.
|
Java Source File Name | Type | Comment |
AbstractJasperReportsSingleFormatView.java | Class | Extends AbstractJasperReportsView to provide basic rendering logic
for views that use a fixed format, e.g. |
AbstractJasperReportsView.java | Class | Base class for all JasperReports views. |
ConfigurableJasperReportsView.java | Class | Configurable JasperReports View, allowing to specify the JasperReports exporter
to be specified through bean properties rather than through the view class name. |
JasperReportsCsvView.java | Class | Implementation of AbstractJasperReportsSingleFormatView
that renders report results in CSV format. |
JasperReportsHtmlView.java | Class | Implementation of AbstractJasperReportsSingleFormatView
that renders report results in HTML format. |
JasperReportsMultiFormatView.java | Class | Jasper Reports view class that allows for the actual rendering format to be
specified at runtime using a parameter contained in the model.
This view works on the concept of a format key and a mapping key.
The format key is used to pass the mapping key from your
Controller to Spring through as part of the model and the
mapping key is used to map a logical format to an actual JasperReports
view class. |
JasperReportsPdfView.java | Class | Implementation of AbstractJasperReportsSingleFormatView
that renders report results in PDF format. |
JasperReportsViewResolver.java | Class | org.springframework.web.servlet.ViewResolver implementation that
resolves instances of
AbstractJasperReportsView by translating
the supplied view name into the URL of the report file. |
JasperReportsXlsView.java | Class | Implementation of AbstractJasperReportsSingleFormatView
that renders report results in XLS format. |