Uses of Interface
org.springframework.context.ApplicationContextAware
Package
Description
Support classes for application events, like standard context events.
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Contains an abstraction over client-side HTTP.
Abstractions for reactive HTTP client support including
ClientHttpRequest
and
ClientHttpResponse
as well as a
ClientHttpConnector
.Provides HttpMessageConverter implementations for handling JSON.
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
Common infrastructure for invoking message handler methods.
Common infrastructure for invoking message handler methods with non-blocking,
and reactive contracts.
Support classes for working with annotated RSocket stream handling methods.
Support classes for handling messages from simple messaging protocols
(like STOMP).
Configuration support for WebSocket messaging using higher level messaging protocols.
Annotation support for asynchronous method execution.
Scheduling convenience classes for the
java.util.concurrent
and jakarta.enterprise.concurrent
packages, allowing to set up a
ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring
context.Support classes for the open source scheduler
Quartz,
allowing to set up Quartz Schedulers, JobDetails and
Triggers as beans in a Spring context.
Support classes for integrating the Spring TestContext Framework
with JUnit 4.12 or higher.
Support classes for integrating the Spring TestContext Framework
with TestNG.
Support classes for integrating a JSR-303 Bean Validation provider
(such as Hibernate Validator) into a Spring ApplicationContext
and in particular with Spring's data binding and validation APIs.
Classes supporting the
org.springframework.web.context
package,
such as WebApplicationContext implementations and various utility classes.Top-level package for the
spring-webflux
module that contains
DispatcherHandler
, the main entry
point for WebFlux server endpoint processing including key contracts used to
map requests to handlers, invoke them, and process the result.Spring WebFlux configuration infrastructure.
Classes supporting the
org.springframework.web.reactive.function.server
package.Provides HandlerMapping implementations including abstract base classes.
Support classes for serving static resources.
Infrastructure for handler method processing.
Infrastructure for annotation-based handler method processing.
Support for result handling through view resolution.
Support classes for the integration of
FreeMarker
as Spring web view technology.
Support classes for views based on the JSR-223 script engine abstraction
(as included in Java 6+), e.g.
Provides servlets that integrate with the application context
infrastructure, and the core interfaces and classes for the
Spring web MVC framework.
Annotation-based setup for Spring MVC.
Classes supporting the
org.springframework.web.servlet.function
package.Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
Standard controller implementations for the Servlet MVC framework that comes with
Spring.
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method
package.MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.Support classes for serving static resources.
Support classes for Spring's web MVC framework.
Provides standard View and ViewResolver implementations,
including abstract base classes for custom implementations.
Support classes for document generation,
providing View implementations for PDF and Excel.
Support classes for feed generation, providing View implementations for Atom and RSS.
Support classes for the integration of
FreeMarker
as Spring web view technology.
Support classes for the integration of
Groovy Templates as Spring web view technology.
Support classes for providing a View implementation based on JSON serialization.
Support classes for views based on the JSR-223 script engine abstraction
(as included in Java 6+), e.g.
Support classes for providing a View implementation based on XML Marshalling.
Support classes for XSLT,
providing a View implementation for XSLT stylesheets.
Support for annotation-based WebSocket setup in configuration classes.
WebSocket integration for Spring's messaging module.
Server-side classes for use with standard JSR-356 WebSocket endpoints.
Server-side support classes including container-specific strategies
for upgrading a request.
-
Uses of ApplicationContextAware in org.springframework.context.event
Modifier and TypeClassDescriptionclass
RegistersEventListener
methods as individualApplicationListener
instances. -
Uses of ApplicationContextAware in org.springframework.context.support
Modifier and TypeClassDescriptionclass
Convenient superclass for application objects that want to be aware of the application context, e.g. -
Uses of ApplicationContextAware in org.springframework.http.client
Modifier and TypeClassDescriptionclass
Factory to manage Reactor Netty resources, i.e. -
Uses of ApplicationContextAware in org.springframework.http.client.reactive
-
Uses of ApplicationContextAware in org.springframework.http.converter.json
Modifier and TypeClassDescriptionclass
AFactoryBean
for creating a Jackson 2.xObjectMapper
(default) orXmlMapper
(createXmlMapper
property set to true) with setters to enable or disable Jackson features from within XML configuration. -
Uses of ApplicationContextAware in org.springframework.jms.config
Modifier and TypeClassDescriptionclass
Creates the necessaryMessageListenerContainer
instances for the registered endpoints. -
Uses of ApplicationContextAware in org.springframework.messaging.handler.annotation.reactive
Modifier and TypeClassDescriptionclass
Extension ofAbstractMethodMessageHandler
for reactive, non-blocking handling of messages via@MessageMapping
methods. -
Uses of ApplicationContextAware in org.springframework.messaging.handler.invocation
Modifier and TypeClassDescriptionclass
Abstract base class for HandlerMethod-based message handling. -
Uses of ApplicationContextAware in org.springframework.messaging.handler.invocation.reactive
Modifier and TypeClassDescriptionclass
Abstract base class for reactive HandlerMethod-based message handling. -
Uses of ApplicationContextAware in org.springframework.messaging.rsocket.annotation.support
Modifier and TypeClassDescriptionclass
Extension ofMessageMappingMessageHandler
to handle RSocket requests with@MessageMapping
and@ConnectMapping
methods, also supporting use of@RSocketExchange
. -
Uses of ApplicationContextAware in org.springframework.messaging.simp.annotation.support
Modifier and TypeClassDescriptionclass
A handler for messages delegating to@MessageMapping
and@SubscribeMapping
annotated methods. -
Uses of ApplicationContextAware in org.springframework.messaging.simp.config
Modifier and TypeClassDescriptionclass
Provides essential configuration for handling messages with simple messaging protocols such as STOMP. -
Uses of ApplicationContextAware in org.springframework.scheduling.annotation
Modifier and TypeClassDescriptionclass
Bean post-processor that registers methods annotated with@Scheduled
to be invoked by aTaskScheduler
according to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation. -
Uses of ApplicationContextAware in org.springframework.scheduling.concurrent
Modifier and TypeClassDescriptionclass
Base class for setting up aExecutorService
(typically aThreadPoolExecutor
orScheduledThreadPoolExecutor
).class
FactoryBean
that sets up aScheduledExecutorService
(by default: aScheduledThreadPoolExecutor
) and exposes it for bean references.class
A simple implementation of Spring'sTaskScheduler
interface, using a single scheduler thread and executing every scheduled task in an individual separate thread.class
JavaBean that allows for configuring aThreadPoolExecutor
in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a bean reference of its nativeExecutorService
type.class
JavaBean that allows for configuring aThreadPoolExecutor
in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a SpringTaskExecutor
.class
A standard implementation of Spring'sTaskScheduler
interface, wrapping a nativeScheduledThreadPoolExecutor
and providing all applicable configuration options for it. -
Uses of ApplicationContextAware in org.springframework.scheduling.quartz
Modifier and TypeClassDescriptionclass
A SpringFactoryBean
for creating a QuartzJobDetail
instance, supporting bean-style usage for JobDetail configuration.class
FactoryBean
that creates and configures a QuartzScheduler
, manages its lifecycle as part of the Spring application context, and exposes the Scheduler as bean reference for dependency injection.class
Subclass ofAdaptableJobFactory
that also supports Spring-style dependency injection on bean properties. -
Uses of ApplicationContextAware in org.springframework.test.context.junit4
Modifier and TypeClassDescriptionclass
Abstract base test class which integrates the Spring TestContext Framework with explicitApplicationContext
testing support in a JUnit 4 environment.class
Abstract transactional extension ofAbstractJUnit4SpringContextTests
which adds convenience functionality for JDBC access. -
Uses of ApplicationContextAware in org.springframework.test.context.testng
Modifier and TypeClassDescriptionclass
Abstract base test class which integrates the Spring TestContext Framework with explicitApplicationContext
testing support in a TestNG environment.class
Abstract transactional extension ofAbstractTestNGSpringContextTests
which adds convenience functionality for JDBC access. -
Uses of ApplicationContextAware in org.springframework.validation.beanvalidation
Modifier and TypeClassDescriptionclass
This is the central class forjakarta.validation
(JSR-303) setup in a Spring application context: It bootstraps ajakarta.validation.ValidationFactory
and exposes it through the SpringValidator
interface as well as through the JSR-303Validator
interface and theValidatorFactory
interface itself.class
LocalValidatorFactoryBean
subclass that simply turnsValidator
calls into no-ops in case of no Bean Validation provider being available. -
Uses of ApplicationContextAware in org.springframework.web.context.support
Modifier and TypeClassDescriptionclass
Convenient superclass for application objects running in aWebApplicationContext
. -
Uses of ApplicationContextAware in org.springframework.web.reactive
Modifier and TypeClassDescriptionclass
Central dispatcher for HTTP request handlers/controllers. -
Uses of ApplicationContextAware in org.springframework.web.reactive.config
Modifier and TypeClassDescriptionclass
A subclass ofWebFluxConfigurationSupport
that detects and delegates to all beans of typeWebFluxConfigurer
allowing them to customize the configuration provided byWebFluxConfigurationSupport
.class
The main class for Spring WebFlux configuration. -
Uses of ApplicationContextAware in org.springframework.web.reactive.function.server.support
Modifier and TypeClassDescriptionclass
HandlerMapping
implementation that supportsRouterFunctions
. -
Uses of ApplicationContextAware in org.springframework.web.reactive.handler
Modifier and TypeClassDescriptionclass
Abstract base class forHandlerMapping
implementations.class
Abstract base class for URL-mappedHandlerMapping
implementations.class
Implementation of theHandlerMapping
interface to map from URLs to request handler beans. -
Uses of ApplicationContextAware in org.springframework.web.reactive.resource
Modifier and TypeClassDescriptionclass
A central component to use to obtain the public URL path that clients should use to access a static resource. -
Uses of ApplicationContextAware in org.springframework.web.reactive.result.method
Modifier and TypeClassDescriptionclass
Abstract base class forHandlerMapping
implementations that define a mapping between a request and aHandlerMethod
.class
Abstract base class for classes for whichRequestMappingInfo
defines the mapping between a request and a handler method. -
Uses of ApplicationContextAware in org.springframework.web.reactive.result.method.annotation
Modifier and TypeClassDescriptionclass
Supports the invocation of@RequestMapping
handler methods.class
An extension ofRequestMappingInfoHandlerMapping
that createsRequestMappingInfo
instances from type-level and method-level@RequestMapping
and@HttpExchange
annotations. -
Uses of ApplicationContextAware in org.springframework.web.reactive.result.view
Modifier and TypeClassDescriptionclass
Abstract base class for URL-based views.class
Base class forView
implementations.class
View that redirects to an absolute or context relative URL.class
AViewResolver
that allows direct resolution of symbolic view names to URLs without explicit mapping definitions. -
Uses of ApplicationContextAware in org.springframework.web.reactive.result.view.freemarker
Modifier and TypeClassDescriptionclass
AView
implementation that uses the FreeMarker template engine.class
AViewResolver
for resolvingFreeMarkerView
instances, i.e. -
Uses of ApplicationContextAware in org.springframework.web.reactive.result.view.script
Modifier and TypeClassDescriptionclass
AnAbstractUrlBasedView
subclass designed to run any template library based on a JSR-223 script engine.class
Convenience subclass ofUrlBasedViewResolver
that supportsScriptTemplateView
and custom subclasses of it. -
Uses of ApplicationContextAware in org.springframework.web.servlet
Modifier and TypeClassDescriptionclass
Central dispatcher for HTTP request handlers/controllers, e.g.class
Base servlet for Spring's web framework. -
Uses of ApplicationContextAware in org.springframework.web.servlet.config.annotation
Modifier and TypeClassDescriptionclass
A subclass ofWebMvcConfigurationSupport
that detects and delegates to all beans of typeWebMvcConfigurer
allowing them to customize the configuration provided byWebMvcConfigurationSupport
.class
This is the main class providing the configuration behind the MVC Java config. -
Uses of ApplicationContextAware in org.springframework.web.servlet.function.support
Modifier and TypeClassDescriptionclass
HandlerMapping
implementation that supportsRouterFunctions
. -
Uses of ApplicationContextAware in org.springframework.web.servlet.handler
Modifier and TypeClassDescriptionclass
Abstract implementation of theHandlerMapping
interface, detecting URL mappings for handler beans through introspection of all defined beans in the application context.class
Abstract base class forHandlerMapping
implementations.class
Abstract base class forHandlerMapping
implementations that define a mapping between a request and aHandlerMethod
.class
Abstract base class for URL-mappedHandlerMapping
implementations.class
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
Helper class to get information from theHandlerMapping
that would serve a specific request.class
Implementation of theHandlerMapping
interface that maps from URLs to request handler beans. -
Uses of ApplicationContextAware in org.springframework.web.servlet.mvc
Modifier and TypeClassDescriptionclass
Convenient superclass for controller implementations, using the Template Method design pattern.class
Abstract base class forControllers
that return a view name based on the request URL.class
Trivial controller that always returns a pre-configured view and optionally sets the response status code.class
Spring Controller implementation that forwards to a named servlet, i.e.class
Spring Controller implementation that wraps a servlet instance which it manages internally.class
SimpleController
implementation that transforms the virtual path of a URL into a view name and returns that view.class
Handler interceptor that checks the request for supported methods and a required session and prepares the response by applying the configured cache settings. -
Uses of ApplicationContextAware in org.springframework.web.servlet.mvc.method
Modifier and TypeClassDescriptionclass
Abstract base class forHandlerAdapter
implementations that support handlers of typeHandlerMethod
.class
Abstract base class for classes for whichRequestMappingInfo
defines the mapping between a request and a handler method. -
Uses of ApplicationContextAware in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
AnAbstractHandlerMethodExceptionResolver
that resolves exceptions through@ExceptionHandler
methods.class
class
CreatesRequestMappingInfo
instances from type-level and method-level@RequestMapping
and@HttpExchange
annotations in@Controller
classes. -
Uses of ApplicationContextAware in org.springframework.web.servlet.resource
Modifier and TypeClassDescriptionclass
HttpRequestHandler
that serves static resources in an optimized way according to the guidelines of Page Speed, YSlow, etc.class
A central component to use to obtain the public URL path that clients should use to access a static resource. -
Uses of ApplicationContextAware in org.springframework.web.servlet.support
Modifier and TypeClassDescriptionclass
Convenient superclass for any kind of web content generator, likeAbstractController
andWebContentInterceptor
. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view
Modifier and TypeClassDescriptionclass
Convenient base class forViewResolver
implementations.class
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
Abstract base class for template view resolvers, in particular for FreeMarker views.class
Abstract base class for URL-based views.class
Abstract base class forView
implementations.class
A simple implementation ofViewResolver
that interprets a view name as a bean name in the current application context, i.e.class
Implementation ofViewResolver
that resolves a view based on the request file name orAccept
header.class
Wrapper for a JSP or other resource within the same web application.class
Convenient subclass ofUrlBasedViewResolver
that supportsInternalResourceView
(i.e.class
Specialization ofInternalResourceView
for JSTL pages, i.e.class
View that redirects to an absolute, context relative, or current request relative URL.class
Deprecated.as of 5.3, in favor of Spring's common view resolver variants and/or custom resolver implementationsclass
Simple implementation of theViewResolver
interface, allowing for direct resolution of symbolic view names to URLs, without explicit mapping definitions.class
AViewResolver
that delegates to others.class
Deprecated.as of 5.3, in favor of Spring's common view resolver variants and/or custom resolver implementations -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.document
Modifier and TypeClassDescriptionclass
Abstract superclass for PDF views that operate on an existing document with an AcroForm.class
Abstract superclass for PDF views.class
Convenient superclass for Excel document views in traditional XLS format.class
Convenient superclass for Excel document views in the Office 2007 XLSX format, using POI's streaming variant.class
Convenient superclass for Excel document views in the Office 2007 XLSX format (as supported by POI-OOXML). -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.feed
Modifier and TypeClassDescriptionclass
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
Abstract superclass for RSS Feed views, using the ROME package. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.freemarker
Modifier and TypeClassDescriptionclass
View using the FreeMarker template engine.class
Convenience subclass ofUrlBasedViewResolver
that supportsFreeMarkerView
(i.e. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.groovy
Modifier and TypeClassDescriptionclass
An extension of Groovy'sTemplateConfiguration
and an implementation of Spring MVC'sGroovyMarkupConfig
for creating aMarkupTemplateEngine
for use in a web application.class
AnAbstractTemplateView
subclass based on Groovy XML/XHTML markup templates.class
Convenience subclass ofAbstractTemplateViewResolver
that supportsGroovyMarkupView
(i.e. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.json
Modifier and TypeClassDescriptionclass
Abstract base class for Jackson based and content type independentAbstractView
implementations.class
Spring MVCView
that renders JSON content by serializing the model for the current request using Jackson 2'sObjectMapper
. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.script
Modifier and TypeClassDescriptionclass
AnAbstractUrlBasedView
subclass designed to run any template library based on a JSR-223 script engine.class
Convenience subclass ofUrlBasedViewResolver
that supportsScriptTemplateView
and custom subclasses of it. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.xml
Modifier and TypeClassDescriptionclass
Spring MVCView
that renders XML content by serializing the model for the current request using Jackson 2'sXmlMapper
.class
Spring-MVCView
that allows for response context to be rendered as the result of marshalling by aMarshaller
. -
Uses of ApplicationContextAware in org.springframework.web.servlet.view.xslt
Modifier and TypeClassDescriptionclass
XSLT-driven View that allows for response context to be rendered as the result of an XSLT transformation.class
ViewResolver
implementation that resolves instances ofXsltView
by translating the supplied view name into the URL of the XSLT stylesheet. -
Uses of ApplicationContextAware in org.springframework.web.socket.config.annotation
Modifier and TypeClassDescriptionclass
AWebSocketMessageBrokerConfigurationSupport
extension that detects beans of typeWebSocketMessageBrokerConfigurer
and delegates to all of them allowing callback style customization of the configuration provided inWebSocketMessageBrokerConfigurationSupport
.class
ExtendsAbstractMessageBrokerConfiguration
and adds configuration for receiving and responding to STOMP messages from WebSocket clients. -
Uses of ApplicationContextAware in org.springframework.web.socket.messaging
Modifier and TypeClassDescriptionclass
A subclass ofSimpAnnotationMethodMessageHandler
to provide support forControllerAdvice
with global@MessageExceptionHandler
methods. -
Uses of ApplicationContextAware in org.springframework.web.socket.server.standard
Modifier and TypeClassDescriptionclass
Detects beans of typeServerEndpointConfig
and registers with the standard Jakarta WebSocket runtime. -
Uses of ApplicationContextAware in org.springframework.web.socket.server.support
Modifier and TypeClassDescriptionclass
Extension ofSimpleUrlHandlerMapping
with support for more precise mapping of WebSocket handshake requests to handlers of typeWebSocketHttpRequestHandler
.
ReactorResourceFactory
instead.