Class AbstractPdfStamperView
- All Implemented Interfaces:
- Aware, BeanNameAware, InitializingBean, 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.
Thanks to Bryant Larsen for the suggestion and the original prototype!
- Since:
- 2.5.4
- Author:
- Juergen Hoeller
- 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.
- 
Method SummaryModifier and TypeMethodDescriptionprotected 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 abstract voidmergePdfDocument(Map<String, Object> model, com.lowagie.text.pdf.PdfStamper stamper, 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 merge the PDF form with the given model data.protected com.lowagie.text.pdf.PdfReaderDeprecated, for removal: This API element is subject to removal in a future version.Read the raw PDF resource into an iText PdfReader.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 AbstractUrlBasedViewafterPropertiesSet, checkResource, getUrl, isUrlRequired, setUrl, toStringMethods 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, writeToResponseMethods inherited from class WebApplicationObjectSupportgetServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContextMethods inherited from class ApplicationObjectSupportgetApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
- 
Constructor Details- 
AbstractPdfStamperViewpublic AbstractPdfStamperView()Deprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
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
 
- 
readPdfResourceDeprecated, for removal: This API element is subject to removal in a future version.Read the raw PDF resource into an iText PdfReader.The default implementation resolve the specified "url" property as ApplicationContext resource. - Returns:
- the PdfReader instance
- Throws:
- IOException- if resource access failed
- See Also:
 
- 
mergePdfDocumentprotected abstract void mergePdfDocument(Map<String, Object> model, com.lowagie.text.pdf.PdfStamper stamper, 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 merge the PDF form with the given model data.This is where you are able to set values on the AcroForm. An example of what can be done at this level is: // get the form from the document AcroFields form = stamper.getAcroFields(); // set some values on the form form.setField("field1", "value1"); form.setField("field2", "value2"); // set the disposition and filename response.setHeader("Content-disposition", "attachment; FILENAME=someName.pdf");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
- stamper- the PdfStamper instance that will contain the AcroFields. You may also customize this PdfStamper instance according to your needs, for example, setting the "formFlattening" property.
- 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
 
 
- 
Viewclass or perform rendering in web handlers directly.