Este contenido no está disponible en el idioma seleccionado.
18.6. Configuring iText
			Document generation itself requires no additional configuration, but some minor configuration can make your application more user-friendly.
		
			The default implementation serves PDF documents from a generic URL, 
/seam-doc.seam. Many users would prefer to see a URL that contains the actual PDF name — /myDocument.pdf, for example — which requires some configuration. To serve PDF files, all *.pdf resources must be mapped to the DocumentStoreServlet:
		
			The 
use-extensions option instructs the DocumentStore component to generate URLs with the correct filename extension for the generated document type.
		
			The DocumentStore holds documents in conversation scope, so documents will expire when the conversation ends. At that point, references to the document will be invalid. Specify a default view to show when a document does not exist by editing the 
error-page property of documentStore.
		<document:document-store use-extensions="true" 
          error-page="/documentMissing.seam" />
<document:document-store use-extensions="true" 
          error-page="/documentMissing.seam" />