public abstract class AbstractPdfView extends AbstractView
This view implementation uses Bruno Lowagie's iText API. Known to work with the original iText 2.1.7 as well as its fork OpenPDF. We strongly recommend OpenPDF since it is actively maintained and fixes an important vulnerability for untrusted PDF content.
Note: Internet Explorer requires a ".pdf" extension, as it doesn't always respect the declared content type.
AbstractPdfStamperView
DEFAULT_CONTENT_TYPE
logger
PATH_VARIABLES, RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE
Constructor and Description |
---|
AbstractPdfView()
This constructor sets the appropriate content type "application/pdf".
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
buildPdfDocument(java.util.Map<java.lang.String,java.lang.Object> model,
com.lowagie.text.Document document,
com.lowagie.text.pdf.PdfWriter writer,
HttpServletRequest request,
HttpServletResponse response)
Subclasses must implement this method to build an iText PDF document,
given the model.
|
protected void |
buildPdfMetadata(java.util.Map<java.lang.String,java.lang.Object> model,
com.lowagie.text.Document document,
HttpServletRequest request)
Populate the iText Document's meta fields (author, title, etc.).
|
protected boolean |
generatesDownloadContent()
Return whether this view generates download content
(typically binary content like PDF or Excel files).
|
protected int |
getViewerPreferences()
Return the viewer preferences for the PDF file.
|
protected com.lowagie.text.Document |
newDocument()
Create a new document to hold the PDF contents.
|
protected com.lowagie.text.pdf.PdfWriter |
newWriter(com.lowagie.text.Document document,
java.io.OutputStream os)
Create a new PdfWriter for the given iText Document.
|
protected void |
prepareWriter(java.util.Map<java.lang.String,java.lang.Object> model,
com.lowagie.text.pdf.PdfWriter writer,
HttpServletRequest request)
Prepare the given PdfWriter.
|
protected void |
renderMergedOutputModel(java.util.Map<java.lang.String,java.lang.Object> model,
HttpServletRequest request,
HttpServletResponse response)
Subclasses must implement this method to actually render the view.
|
addStaticAttribute, createMergedOutputModel, createRequestContext, createTemporaryOutputStream, exposeModelAsRequestAttributes, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getRequestToExpose, getStaticAttributes, isExposePathVariables, prepareResponse, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setRequestContextAttribute, setResponseContentType, toString, writeToResponse
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContext
getApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
public AbstractPdfView()
protected boolean generatesDownloadContent()
AbstractView
The default implementation returns false
. Subclasses are
encouraged to return true
here if they know that they are
generating download content that requires temporary caching on the
client side, typically via the response OutputStream.
protected final void renderMergedOutputModel(java.util.Map<java.lang.String,java.lang.Object> model, HttpServletRequest request, HttpServletResponse response) throws java.lang.Exception
AbstractView
The first step will be preparing the request: In the JSP case, this would mean setting model objects as request attributes. The second step will be the actual rendering of the view, for example including the JSP via a RequestDispatcher.
renderMergedOutputModel
in class AbstractView
model
- combined output Map (never null
),
with dynamic values taking precedence over static attributesrequest
- current HTTP requestresponse
- current HTTP responsejava.lang.Exception
- if rendering failedprotected com.lowagie.text.Document newDocument()
By default returns an A4 document, but the subclass can specify any Document, possibly parameterized via bean properties defined on the View.
Document.Document(com.lowagie.text.Rectangle)
protected com.lowagie.text.pdf.PdfWriter newWriter(com.lowagie.text.Document document, java.io.OutputStream os) throws com.lowagie.text.DocumentException
document
- the iText Document to create a writer foros
- the OutputStream to write tocom.lowagie.text.DocumentException
- if thrown during writer creationprotected void prepareWriter(java.util.Map<java.lang.String,java.lang.Object> model, com.lowagie.text.pdf.PdfWriter writer, HttpServletRequest request) throws com.lowagie.text.DocumentException
Document.open()
.
Useful for registering a page event listener, for example.
The default implementation sets the viewer preferences as returned
by this class's getViewerPreferences()
method.
model
- the model, in case meta information must be populated from itwriter
- the PdfWriter to preparerequest
- in case we need locale etc. Shouldn't look at attributes.com.lowagie.text.DocumentException
- if thrown during writer preparationDocument.open()
,
PdfWriter.setPageEvent(com.lowagie.text.pdf.PdfPageEvent)
,
PdfWriter.setViewerPreferences(int)
,
getViewerPreferences()
protected int getViewerPreferences()
By default returns AllowPrinting
and
PageLayoutSinglePage
, but can be subclassed.
The subclass can either have fixed preferences or retrieve
them from bean properties defined on the View.
PdfWriter.AllowPrinting
,
PdfWriter.PageLayoutSinglePage
protected void buildPdfMetadata(java.util.Map<java.lang.String,java.lang.Object> model, com.lowagie.text.Document document, HttpServletRequest request)
document.open()
.model
- the model, in case meta information must be populated from itdocument
- the iText document being populatedrequest
- in case we need locale etc. Shouldn't look at attributes.Document.addTitle(java.lang.String)
,
Document.addSubject(java.lang.String)
,
Document.addKeywords(java.lang.String)
,
Document.addAuthor(java.lang.String)
,
Document.addCreator(java.lang.String)
,
Document.addProducer()
,
Document.addCreationDate()
,
Document.addHeader(java.lang.String, java.lang.String)
protected abstract void buildPdfDocument(java.util.Map<java.lang.String,java.lang.Object> model, com.lowagie.text.Document document, com.lowagie.text.pdf.PdfWriter writer, HttpServletRequest request, HttpServletResponse response) throws java.lang.Exception
Document.open()
and
Document.close()
calls.
Note that the passed-in HTTP response is just supposed to be used for setting cookies or other HTTP headers. The built PDF document itself will automatically get written to the response after this method returns.
model
- the model Mapdocument
- the iText Document to add elements towriter
- the PdfWriter to userequest
- in case we need locale etc. Shouldn't look at attributes.response
- in case we need to set cookies. Shouldn't write to it.java.lang.Exception
- any exception that occurred during document buildingDocument.open()
,
Document.close()