Class AbstractPdfView
- All Implemented Interfaces:
- Aware, BeanNameAware, ApplicationContextAware, ServletContextAware, View
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.
- Author:
- Rod Johnson, Juergen Hoeller, Jean-Pierre Pawlak
- See Also:
- 
Field SummaryFields inherited from class AbstractViewDEFAULT_CONTENT_TYPEFields inherited from class ApplicationObjectSupportloggerFields inherited from interface ViewPATH_VARIABLES, RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE
- 
Constructor SummaryConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.This constructor sets the appropriate content type "application/pdf".
- 
Method SummaryModifier and TypeMethodDescriptionprotected abstract voidbuildPdfDocument(Map<String, Object> model, com.lowagie.text.Document document, com.lowagie.text.pdf.PdfWriter writer, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Deprecated, for removal: This API element is subject to removal in a future version.Subclasses must implement this method to build an iText PDF document, given the model.protected voidbuildPdfMetadata(Map<String, Object> model, com.lowagie.text.Document document, jakarta.servlet.http.HttpServletRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Populate the iText Document's meta fields (author, title, etc.).protected booleanDeprecated, for removal: This API element is subject to removal in a future version.Return whether this view generates download content (typically binary content like PDF or Excel files).protected intDeprecated, for removal: This API element is subject to removal in a future version.Return the viewer preferences for the PDF file.protected com.lowagie.text.DocumentDeprecated, for removal: This API element is subject to removal in a future version.Create a new document to hold the PDF contents.protected com.lowagie.text.pdf.PdfWriternewWriter(com.lowagie.text.Document document, OutputStream os) Deprecated, for removal: This API element is subject to removal in a future version.Create a new PdfWriter for the given iText Document.protected voidprepareWriter(Map<String, Object> model, com.lowagie.text.pdf.PdfWriter writer, jakarta.servlet.http.HttpServletRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Prepare the given PdfWriter.protected final voidrenderMergedOutputModel(Map<String, Object> model, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Deprecated, for removal: This API element is subject to removal in a future version.Subclasses must implement this method to actually render the view.Methods inherited from class AbstractViewaddStaticAttribute, createMergedOutputModel, createRequestContext, createTemporaryOutputStream, exposeModelAsRequestAttributes, formatViewName, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getRequestToExpose, getStaticAttributes, isExposePathVariables, prepareResponse, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setRequestContextAttribute, setResponseContentType, toString, writeToResponseMethods inherited from class WebApplicationObjectSupportgetServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContextMethods inherited from class ApplicationObjectSupportgetApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
- 
Constructor Details- 
AbstractPdfViewpublic AbstractPdfView()Deprecated, for removal: This API element is subject to removal in a future version.This constructor sets the appropriate content type "application/pdf". Note that IE won't take much notice of this, but there's not a lot we can do about this. Generated documents should have a ".pdf" extension.
 
- 
- 
Method Details- 
generatesDownloadContentprotected boolean generatesDownloadContent()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AbstractViewReturn whether this view generates download content (typically binary content like PDF or Excel files).The default implementation returns false. Subclasses are encouraged to returntruehere if they know that they are generating download content that requires temporary caching on the client side, typically via the response OutputStream.- Overrides:
- generatesDownloadContentin class- AbstractView
- See Also:
 
- 
renderMergedOutputModelprotected final void renderMergedOutputModel(Map<String, Object> model, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws ExceptionDeprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AbstractViewSubclasses must implement this method to actually render the view.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. - Specified by:
- renderMergedOutputModelin class- AbstractView
- Parameters:
- model- combined output Map (never- null), with dynamic values taking precedence over static attributes
- request- current HTTP request
- response- current HTTP response
- Throws:
- Exception- if rendering failed
 
- 
newDocumentprotected com.lowagie.text.Document newDocument()Deprecated, for removal: This API element is subject to removal in a future version.Create a new document to hold the PDF contents.By default returns an A4 document, but the subclass can specify any Document, possibly parameterized via bean properties defined on the View. - Returns:
- the newly created iText Document instance
- See Also:
 
- 
newWriterprotected com.lowagie.text.pdf.PdfWriter newWriter(com.lowagie.text.Document document, OutputStream os) throws com.lowagie.text.DocumentException Deprecated, for removal: This API element is subject to removal in a future version.Create a new PdfWriter for the given iText Document.- Parameters:
- document- the iText Document to create a writer for
- os- the OutputStream to write to
- Returns:
- the PdfWriter instance to use
- Throws:
- com.lowagie.text.DocumentException- if thrown during writer creation
 
- 
prepareWriterprotected void prepareWriter(Map<String, Object> model, com.lowagie.text.pdf.PdfWriter writer, jakarta.servlet.http.HttpServletRequest request) throws com.lowagie.text.DocumentExceptionDeprecated, for removal: This API element is subject to removal in a future version.Prepare the given PdfWriter. Called before building the PDF document, that is, before the call toDocument.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.- Parameters:
- model- the model, in case meta information must be populated from it
- writer- the PdfWriter to prepare
- request- in case we need locale etc. Shouldn't look at attributes.
- Throws:
- com.lowagie.text.DocumentException- if thrown during writer preparation
- See Also:
 
- 
getViewerPreferencesprotected int getViewerPreferences()Deprecated, for removal: This API element is subject to removal in a future version.Return the viewer preferences for the PDF file.By default returns AllowPrintingandPageLayoutSinglePage, but can be subclassed. The subclass can either have fixed preferences or retrieve them from bean properties defined on the View.- Returns:
- an int containing the bits information against PdfWriter definitions
- See Also:
 
- 
buildPdfMetadataprotected void buildPdfMetadata(Map<String, Object> model, com.lowagie.text.Document document, jakarta.servlet.http.HttpServletRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Populate the iText Document's meta fields (author, title, etc.).
 Default is an empty implementation. Subclasses may override this method to add meta fields such as title, subject, author, creator, keywords, etc. This method is called after assigning a PdfWriter to the Document and before callingdocument.open().- Parameters:
- model- the model, in case meta information must be populated from it
- document- the iText document being populated
- request- in case we need locale etc. Shouldn't look at attributes.
- See Also:
 
- 
buildPdfDocumentprotected abstract void buildPdfDocument(Map<String, Object> model, com.lowagie.text.Document document, com.lowagie.text.pdf.PdfWriter writer, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws ExceptionDeprecated, for removal: This API element is subject to removal in a future version.Subclasses must implement this method to build an iText PDF document, given the model. Called betweenDocument.open()andDocument.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. - Parameters:
- model- the model Map
- document- the iText Document to add elements to
- writer- the PdfWriter to use
- request- in case we need locale etc. Shouldn't look at attributes.
- response- in case we need to set cookies. Shouldn't write to it.
- Throws:
- Exception- any exception that occurred during document building
- See Also:
 
 
- 
Viewclass or perform rendering in web handlers directly.