类 AbstractPdfView
- 所有已实现的接口:
cn.taketoday.beans.factory.Aware,cn.taketoday.beans.factory.BeanNameAware,cn.taketoday.context.ApplicationContextAware,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.
- 作者:
- Rod Johnson, Juergen Hoeller, Jean-Pierre Pawlak
- 另请参阅:
-
字段概要
从类继承的字段 cn.taketoday.web.view.AbstractView
DEFAULT_CONTENT_TYPE从类继承的字段 cn.taketoday.context.support.ApplicationObjectSupport
applicationContext, log, messageSourceAccessor从接口继承的字段 cn.taketoday.web.view.View
RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明protected abstract voidbuildPdfDocument(Map<String, Object> model, com.lowagie.text.Document document, com.lowagie.text.pdf.PdfWriter writer, RequestContext context) 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, RequestContext request) Populate the iText Document's meta fields (author, title, etc.).protected booleanReturn whether this view generates download content (typically binary content like PDF or Excel files).protected intReturn the viewer preferences for the PDF file.protected com.lowagie.text.DocumentCreate a new document to hold the PDF contents.protected com.lowagie.text.pdf.PdfWriternewWriter(com.lowagie.text.Document document, OutputStream os) Create a new PdfWriter for the given iText Document.protected voidprepareWriter(Map<String, Object> model, com.lowagie.text.pdf.PdfWriter writer, RequestContext request) Prepare the given PdfWriter.protected final voidrenderMergedOutputModel(Map<String, Object> model, RequestContext request) Subclasses must implement this method to actually render the view.从类继承的方法 cn.taketoday.web.view.AbstractView
addStaticAttribute, createMergedOutputModel, createTemporaryOutputStream, exposeModelAsRequestAttributes, formatViewName, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getRequestContextToExpose, getStaticAttributes, isExposePathVariables, prepareResponse, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposeOutputRedirectModel, setExposePathVariables, setRequestContextAttribute, setResponseContentType, toString, writeToResponse从类继承的方法 cn.taketoday.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, initApplicationContext, isContextRequired, obtainApplicationContext, requiredContextClass, setApplicationContext, unwrapContext, unwrapFactory
-
构造器详细资料
-
AbstractPdfView
public AbstractPdfView()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.
-
-
方法详细资料
-
generatesDownloadContent
protected boolean generatesDownloadContent()从类复制的说明: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. -
renderMergedOutputModel
protected final void renderMergedOutputModel(Map<String, Object> model, RequestContext request) throws Exception从类复制的说明: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.
- 指定者:
renderMergedOutputModel在类中AbstractView- 参数:
model- combined output Map (nevernull), with dynamic values taking precedence over static attributesrequest- current HTTP request context- 抛出:
Exception- if rendering failed
-
newDocument
protected com.lowagie.text.Document newDocument()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.
- 返回:
- the newly created iText Document instance
- 另请参阅:
-
Document(com.lowagie.text.Rectangle)
-
newWriter
protected com.lowagie.text.pdf.PdfWriter newWriter(com.lowagie.text.Document document, OutputStream os) throws com.lowagie.text.DocumentException Create a new PdfWriter for the given iText Document.- 参数:
document- the iText Document to create a writer foros- the OutputStream to write to- 返回:
- the PdfWriter instance to use
- 抛出:
com.lowagie.text.DocumentException- if thrown during writer creation
-
prepareWriter
protected void prepareWriter(Map<String, Object> model, com.lowagie.text.pdf.PdfWriter writer, RequestContext request) throws com.lowagie.text.DocumentExceptionPrepare 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.- 参数:
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 preparation- 另请参阅:
-
Document.open()PdfWriter.setPageEvent(com.lowagie.text.pdf.PdfPageEvent)PdfWriter.setViewerPreferences(int)getViewerPreferences()
-
getViewerPreferences
protected int getViewerPreferences()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.- 返回:
- an int containing the bits information against PdfWriter definitions
- 另请参阅:
-
PdfWriter.AllowPrintingPdfWriter.PageLayoutSinglePage
-
buildPdfMetadata
protected void buildPdfMetadata(Map<String, Object> model, com.lowagie.text.Document document, RequestContext request) 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().- 参数:
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)
-
buildPdfDocument
protected abstract void buildPdfDocument(Map<String, Object> model, com.lowagie.text.Document document, com.lowagie.text.pdf.PdfWriter writer, RequestContext context) throws ExceptionSubclasses 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.
- 参数:
model- the model Mapdocument- the iText Document to add elements towriter- the PdfWriter to usecontext- in case we need locale etc. Shouldn't look at attributes.- 抛出:
Exception- any exception that occurred during document building- 另请参阅:
-
Document.open()Document.close()
-