Uses of Class
org.springframework.web.servlet.view.AbstractView
Packages that use AbstractView Package Description org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.view.document Support classes for document generation, providing View implementations for PDF and Excel.org.springframework.web.servlet.view.feed Support classes for feed generation, providing View implementations for Atom and RSS.org.springframework.web.servlet.view.freemarker Support classes for the integration of FreeMarker as Spring web view technology.org.springframework.web.servlet.view.groovy Support classes for the integration of Groovy Templates as Spring web view technology.org.springframework.web.servlet.view.json Support classes for providing a View implementation based on JSON serialization.org.springframework.web.servlet.view.script Support classes for views based on the JSR-223 script engine abstraction (as included in Java 6+), e.g.org.springframework.web.servlet.view.tiles3 Support classes for the integration of Tiles 3 (the standalone version of Tiles) as Spring web view technology.org.springframework.web.servlet.view.xml Support classes for providing a View implementation based on XML Marshalling.org.springframework.web.servlet.view.xslt Support classes for XSLT, providing a View implementation for XSLT stylesheets.Uses of AbstractView in org.springframework.web.servlet.view
Subclasses of AbstractView in org.springframework.web.servlet.view Modifier and Type Class Description classAbstractTemplateViewAdapter base class for template-based view technologies such as FreeMarker, with the ability to use request and session attributes in their model and the option to expose helper objects for Spring's FreeMarker macro library.classAbstractUrlBasedViewAbstract base class for URL-based views.classInternalResourceViewWrapper for a JSP or other resource within the same web application.classJstlViewSpecialization ofInternalResourceViewfor JSTL pages, i.e.classRedirectViewView that redirects to an absolute, context relative, or current request relative URL.Uses of AbstractView in org.springframework.web.servlet.view.document
Subclasses of AbstractView in org.springframework.web.servlet.view.document Modifier and Type Class Description classAbstractPdfStamperViewAbstract superclass for PDF views that operate on an existing document with an AcroForm.classAbstractPdfViewAbstract superclass for PDF views.classAbstractXlsViewConvenient superclass for Excel document views in traditional XLS format.classAbstractXlsxStreamingViewConvenient superclass for Excel document views in the Office 2007 XLSX format, using POI's streaming variant.classAbstractXlsxViewConvenient superclass for Excel document views in the Office 2007 XLSX format (as supported by POI-OOXML).Uses of AbstractView in org.springframework.web.servlet.view.feed
Subclasses of AbstractView in org.springframework.web.servlet.view.feed Modifier and Type Class Description classAbstractAtomFeedViewAbstract superclass for Atom Feed views, using the ROME package.classAbstractFeedView<T extends com.rometools.rome.feed.WireFeed>Abstract base class for Atom and RSS Feed views, using the ROME package.classAbstractRssFeedViewAbstract superclass for RSS Feed views, using the ROME package.Uses of AbstractView in org.springframework.web.servlet.view.freemarker
Subclasses of AbstractView in org.springframework.web.servlet.view.freemarker Modifier and Type Class Description classFreeMarkerViewView using the FreeMarker template engine.Uses of AbstractView in org.springframework.web.servlet.view.groovy
Subclasses of AbstractView in org.springframework.web.servlet.view.groovy Modifier and Type Class Description classGroovyMarkupViewAnAbstractTemplateViewsubclass based on Groovy XML/XHTML markup templates.Uses of AbstractView in org.springframework.web.servlet.view.json
Subclasses of AbstractView in org.springframework.web.servlet.view.json Modifier and Type Class Description classAbstractJackson2ViewAbstract base class for Jackson based and content type independentAbstractViewimplementations.classMappingJackson2JsonViewSpring MVCViewthat renders JSON content by serializing the model for the current request using Jackson 2'sObjectMapper.Uses of AbstractView in org.springframework.web.servlet.view.script
Subclasses of AbstractView in org.springframework.web.servlet.view.script Modifier and Type Class Description classScriptTemplateViewAnAbstractUrlBasedViewsubclass designed to run any template library based on a JSR-223 script engine.Uses of AbstractView in org.springframework.web.servlet.view.tiles3
Subclasses of AbstractView in org.springframework.web.servlet.view.tiles3 Modifier and Type Class Description classTilesViewViewimplementation that renders through the Tiles Request API.Uses of AbstractView in org.springframework.web.servlet.view.xml
Subclasses of AbstractView in org.springframework.web.servlet.view.xml Modifier and Type Class Description classMappingJackson2XmlViewSpring MVCViewthat renders XML content by serializing the model for the current request using Jackson 2'sXmlMapper.classMarshallingViewSpring-MVCViewthat allows for response context to be rendered as the result of marshalling by aMarshaller.Uses of AbstractView in org.springframework.web.servlet.view.xslt
Subclasses of AbstractView in org.springframework.web.servlet.view.xslt Modifier and Type Class Description classXsltViewXSLT-driven View that allows for response context to be rendered as the result of an XSLT transformation.