Uses of Class
org.springframework.context.support.ApplicationObjectSupport
Packages that use ApplicationObjectSupport Package Description org.springframework.web.context.support Classes supporting theorg.springframework.web.context
package, such as WebApplicationContext implementations and various utility classes.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.server
package.org.springframework.web.reactive.handler Provides HandlerMapping implementations including abstract base classes.org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.org.springframework.web.servlet.function.support Classes supporting theorg.springframework.web.servlet.function
package.org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.mvc Standard controller implementations for the Servlet MVC framework that comes with Spring.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.method
package.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotation
package.org.springframework.web.servlet.resource Support classes for serving static resources.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.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.org.springframework.web.socket.server.standard Server-side classes for use with standard JSR-356 WebSocket endpoints.org.springframework.web.socket.server.support Server-side support classes including container-specific strategies for upgrading a request.Uses of ApplicationObjectSupport in org.springframework.web.context.support
Subclasses of ApplicationObjectSupport in org.springframework.web.context.support Modifier and Type Class Description class
WebApplicationObjectSupport
Convenient superclass for application objects running in aWebApplicationContext
.Uses of ApplicationObjectSupport in org.springframework.web.reactive.function.server.support
Subclasses of ApplicationObjectSupport in org.springframework.web.reactive.function.server.support Modifier and Type Class Description class
RouterFunctionMapping
HandlerMapping
implementation that supportsRouterFunctions
.Uses of ApplicationObjectSupport in org.springframework.web.reactive.handler
Subclasses of ApplicationObjectSupport in org.springframework.web.reactive.handler Modifier and Type Class Description class
AbstractHandlerMapping
Abstract base class forHandlerMapping
implementations.class
AbstractUrlHandlerMapping
Abstract base class for URL-mappedHandlerMapping
implementations.class
SimpleUrlHandlerMapping
Implementation of theHandlerMapping
interface to map from URLs to request handler beans.Uses of ApplicationObjectSupport in org.springframework.web.reactive.result.method
Subclasses of ApplicationObjectSupport in org.springframework.web.reactive.result.method Modifier and Type Class Description class
AbstractHandlerMethodMapping<T>
Abstract base class forHandlerMapping
implementations that define a mapping between a request and aHandlerMethod
.class
RequestMappingInfoHandlerMapping
Abstract base class for classes for whichRequestMappingInfo
defines the mapping between a request and a handler method.Uses of ApplicationObjectSupport in org.springframework.web.reactive.result.method.annotation
Subclasses of ApplicationObjectSupport in org.springframework.web.reactive.result.method.annotation Modifier and Type Class Description class
RequestMappingHandlerMapping
An extension ofRequestMappingInfoHandlerMapping
that createsRequestMappingInfo
instances from class-level and method-level@RequestMapping
annotations.Uses of ApplicationObjectSupport in org.springframework.web.servlet.function.support
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.function.support Modifier and Type Class Description class
RouterFunctionMapping
HandlerMapping
implementation that supportsRouterFunctions
.Uses of ApplicationObjectSupport in org.springframework.web.servlet.handler
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.handler Modifier and Type Class Description class
AbstractDetectingUrlHandlerMapping
Abstract implementation of theHandlerMapping
interface, detecting URL mappings for handler beans through introspection of all defined beans in the application context.class
AbstractHandlerMapping
Abstract base class forHandlerMapping
implementations.class
AbstractHandlerMethodMapping<T>
Abstract base class forHandlerMapping
implementations that define a mapping between a request and aHandlerMethod
.class
AbstractUrlHandlerMapping
Abstract base class for URL-mappedHandlerMapping
implementations.class
BeanNameUrlHandlerMapping
Implementation of theHandlerMapping
interface that maps from URLs to beans with names that start with a slash ("/"), similar to how Struts maps URLs to action names.class
SimpleUrlHandlerMapping
Implementation of theHandlerMapping
interface that maps from URLs to request handler beans.Uses of ApplicationObjectSupport in org.springframework.web.servlet.mvc
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.mvc Modifier and Type Class Description class
AbstractController
Convenient superclass for controller implementations, using the Template Method design pattern.class
AbstractUrlViewController
Abstract base class forControllers
that return a view name based on the request URL.class
ParameterizableViewController
Trivial controller that always returns a pre-configured view and optionally sets the response status code.class
ServletForwardingController
Spring Controller implementation that forwards to a named servlet, i.e.class
ServletWrappingController
Spring Controller implementation that wraps a servlet instance which it manages internally.class
UrlFilenameViewController
SimpleController
implementation that transforms the virtual path of a URL into a view name and returns that view.class
WebContentInterceptor
Handler interceptor that checks the request and prepares the response.Uses of ApplicationObjectSupport in org.springframework.web.servlet.mvc.method
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.mvc.method Modifier and Type Class Description class
AbstractHandlerMethodAdapter
Abstract base class forHandlerAdapter
implementations that support handlers of typeHandlerMethod
.class
RequestMappingInfoHandlerMapping
Abstract base class for classes for whichRequestMappingInfo
defines the mapping between a request and a handler method.Uses of ApplicationObjectSupport in org.springframework.web.servlet.mvc.method.annotation
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.mvc.method.annotation Modifier and Type Class Description class
RequestMappingHandlerAdapter
class
RequestMappingHandlerMapping
CreatesRequestMappingInfo
instances from type and method-level@RequestMapping
annotations in@Controller
classes.Uses of ApplicationObjectSupport in org.springframework.web.servlet.resource
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.resource Modifier and Type Class Description class
ResourceHttpRequestHandler
HttpRequestHandler
that serves static resources in an optimized way according to the guidelines of Page Speed, YSlow, etc.Uses of ApplicationObjectSupport in org.springframework.web.servlet.support
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.support Modifier and Type Class Description class
WebContentGenerator
Convenient superclass for any kind of web content generator, likeAbstractController
andWebContentInterceptor
.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view Modifier and Type Class Description class
AbstractCachingViewResolver
Convenient base class forViewResolver
implementations.class
AbstractTemplateView
Adapter 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.class
AbstractTemplateViewResolver
Abstract base class for template view resolvers, in particular for FreeMarker views.class
AbstractUrlBasedView
Abstract base class for URL-based views.class
AbstractView
Abstract base class forView
implementations.class
BeanNameViewResolver
A simple implementation ofViewResolver
that interprets a view name as a bean name in the current application context, i.e.class
ContentNegotiatingViewResolver
Implementation ofViewResolver
that resolves a view based on the request file name orAccept
header.class
InternalResourceView
Wrapper for a JSP or other resource within the same web application.class
InternalResourceViewResolver
Convenient subclass ofUrlBasedViewResolver
that supportsInternalResourceView
(i.e.class
JstlView
Specialization ofInternalResourceView
for JSTL pages, i.e.class
RedirectView
View that redirects to an absolute, context relative, or current request relative URL.class
ResourceBundleViewResolver
AViewResolver
implementation that uses bean definitions in aResourceBundle
, specified by the bundle basename.class
UrlBasedViewResolver
Simple implementation of theViewResolver
interface, allowing for direct resolution of symbolic view names to URLs, without explicit mapping definitions.class
XmlViewResolver
AViewResolver
implementation that uses bean definitions in a dedicated XML file for view definitions, specified by resource location.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.document
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.document Modifier and Type Class Description class
AbstractPdfStamperView
Abstract superclass for PDF views that operate on an existing document with an AcroForm.class
AbstractPdfView
Abstract superclass for PDF views.class
AbstractXlsView
Convenient superclass for Excel document views in traditional XLS format.class
AbstractXlsxStreamingView
Convenient superclass for Excel document views in the Office 2007 XLSX format, using POI's streaming variant.class
AbstractXlsxView
Convenient superclass for Excel document views in the Office 2007 XLSX format (as supported by POI-OOXML).Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.feed
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.feed Modifier and Type Class Description class
AbstractAtomFeedView
Abstract superclass for Atom Feed views, using the ROME package.class
AbstractFeedView<T extends com.rometools.rome.feed.WireFeed>
Abstract base class for Atom and RSS Feed views, using the ROME package.class
AbstractRssFeedView
Abstract superclass for RSS Feed views, using the ROME package.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.freemarker
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.freemarker Modifier and Type Class Description class
FreeMarkerView
View using the FreeMarker template engine.class
FreeMarkerViewResolver
Convenience subclass ofUrlBasedViewResolver
that supportsFreeMarkerView
(i.e.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.groovy
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.groovy Modifier and Type Class Description class
GroovyMarkupView
AnAbstractTemplateView
subclass based on Groovy XML/XHTML markup templates.class
GroovyMarkupViewResolver
Convenience subclass of @link AbstractTemplateViewResolver} that supportsGroovyMarkupView
(i.e.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.json
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.json Modifier and Type Class Description class
AbstractJackson2View
Abstract base class for Jackson based and content type independentAbstractView
implementations.class
MappingJackson2JsonView
Spring MVCView
that renders JSON content by serializing the model for the current request using Jackson 2'sObjectMapper
.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.script
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.script Modifier and Type Class Description class
ScriptTemplateView
AnAbstractUrlBasedView
subclass designed to run any template library based on a JSR-223 script engine.class
ScriptTemplateViewResolver
Convenience subclass ofUrlBasedViewResolver
that supportsScriptTemplateView
and custom subclasses of it.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.tiles3
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.tiles3 Modifier and Type Class Description class
TilesView
View
implementation that renders through the Tiles Request API.class
TilesViewResolver
Convenience subclass ofUrlBasedViewResolver
that supportsTilesView
(i.e.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.xml
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.xml Modifier and Type Class Description class
MappingJackson2XmlView
Spring MVCView
that renders XML content by serializing the model for the current request using Jackson 2'sXmlMapper
.class
MarshallingView
Spring-MVCView
that allows for response context to be rendered as the result of marshalling by aMarshaller
.Uses of ApplicationObjectSupport in org.springframework.web.servlet.view.xslt
Subclasses of ApplicationObjectSupport in org.springframework.web.servlet.view.xslt Modifier and Type Class Description class
XsltView
XSLT-driven View that allows for response context to be rendered as the result of an XSLT transformation.class
XsltViewResolver
ViewResolver
implementation that resolves instances ofXsltView
by translating the supplied view name into the URL of the XSLT stylesheet.Uses of ApplicationObjectSupport in org.springframework.web.socket.server.standard
Subclasses of ApplicationObjectSupport in org.springframework.web.socket.server.standard Modifier and Type Class Description class
ServerEndpointExporter
Detects beans of typeServerEndpointConfig
and registers with the standard Java WebSocket runtime.Uses of ApplicationObjectSupport in org.springframework.web.socket.server.support
Subclasses of ApplicationObjectSupport in org.springframework.web.socket.server.support Modifier and Type Class Description class
WebSocketHandlerMapping
An extension ofSimpleUrlHandlerMapping
that is also aSmartLifecycle
container and propagates start and stop calls to any handlers that implementLifecycle
.