Uses of Interface
org.springframework.context.ApplicationContext
Packages that use ApplicationContext Package Description org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API.org.springframework.context.annotation Annotation support for the Application Context, including JSR-250 "common" annotations, component-scanning, and Java-based metadata for creating Spring-managed objects.org.springframework.context.event Support classes for application events, like standard context events.org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation.org.springframework.http.converter.json Provides HttpMessageConverter implementations for handling JSON.org.springframework.jca.context Integration package that allows for deploying a Spring application context as a JCA 1.7 compliant RAR file.org.springframework.jms.config Support package for declarative messaging configuration, with Java configuration and XML schema support.org.springframework.messaging.handler.invocation Common infrastructure for invoking message handler methods.org.springframework.messaging.handler.invocation.reactive Common infrastructure for invoking message handler methods with non-blocking, and reactive contracts.org.springframework.messaging.simp.config Configuration support for WebSocket messaging using higher level messaging protocols.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context.org.springframework.test.context This package contains the Spring TestContext Framework which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use.org.springframework.test.context.cache Support for context caching within the Spring TestContext Framework.org.springframework.test.context.junit.jupiter Core support for integrating the Spring TestContext Framework with the JUnit Jupiter extension model in JUnit 5.org.springframework.test.context.junit4 Support classes for integrating the Spring TestContext Framework with JUnit 4.12 or higher.org.springframework.test.context.support Support classes for the Spring TestContext Framework.org.springframework.test.context.testng Support classes for integrating the Spring TestContext Framework with TestNG.org.springframework.test.context.web Web support classes for the Spring TestContext Framework.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient.org.springframework.ui.context.support Classes supporting the org.springframework.ui.context package.org.springframework.validation.beanvalidation 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.org.springframework.web.context Contains a variant of the application context interface for web applications, and the ContextLoaderListener that bootstraps a root web application context.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.org.springframework.web.method Common infrastructure for handler method processing, as used by Spring MVC'sorg.springframework.web.servlet.mvc.methodpackage.org.springframework.web.reactive Top-level package for thespring-webfluxmodule that containsDispatcherHandler, the main entry point for WebFlux server endpoint processing including key contracts used to map requests to handlers, invoke them, and process the result.org.springframework.web.reactive.config Spring WebFlux configuration infrastructure.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.org.springframework.web.reactive.result.view Support for result handling through view resolution.org.springframework.web.reactive.result.view.script Support classes for views based on the JSR-223 script engine abstraction (as included in Java 6+), e.g.org.springframework.web.server Core interfaces and classes for Spring's generic, reactive web support.org.springframework.web.server.adapter Implementations to adapt to the underlyingorg.springframework.http.client.reactivereactive HTTP adapter andHttpHandler.org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.org.springframework.web.servlet.config.annotation Annotation-based setup for Spring MVC.org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotationpackage.org.springframework.web.servlet.resource Support classes for serving static resources.org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.view.groovy Support classes for the integration of Groovy Templates as Spring web view technology.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.socket.adapter.standard Adapter classes for the standard Java WebSocket API.org.springframework.web.socket.config.annotation Support for annotation-based WebSocket setup in configuration classes.Uses of ApplicationContext in org.springframework.context
Subinterfaces of ApplicationContext in org.springframework.context Modifier and Type Interface Description interfaceConfigurableApplicationContextSPI interface to be implemented by most if not all application contexts.Methods in org.springframework.context that return ApplicationContext Modifier and Type Method Description ApplicationContextApplicationContext. getParent()Return the parent context, ornullif there is no parent and this is the root of the context hierarchy.Methods in org.springframework.context with parameters of type ApplicationContext Modifier and Type Method Description voidApplicationContextAware. setApplicationContext(ApplicationContext applicationContext)Set the ApplicationContext that this object runs in.voidConfigurableApplicationContext. setParent(ApplicationContext parent)Set the parent of this application context.Uses of ApplicationContext in org.springframework.context.annotation
Classes in org.springframework.context.annotation that implement ApplicationContext Modifier and Type Class Description classAnnotationConfigApplicationContextStandalone application context, accepting component classes as input — in particular@Configuration-annotated classes, but also plain@Componenttypes and JSR-330 compliant classes usingjavax.injectannotations.Uses of ApplicationContext in org.springframework.context.event
Methods in org.springframework.context.event that return ApplicationContext Modifier and Type Method Description ApplicationContextApplicationContextEvent. getApplicationContext()Get theApplicationContextthat the event was raised for.Methods in org.springframework.context.event with parameters of type ApplicationContext Modifier and Type Method Description voidEventListenerMethodProcessor. setApplicationContext(ApplicationContext applicationContext)Constructors in org.springframework.context.event with parameters of type ApplicationContext Constructor Description ApplicationContextEvent(ApplicationContext source)Create a new ContextStartedEvent.ContextClosedEvent(ApplicationContext source)Creates a new ContextClosedEvent.ContextRefreshedEvent(ApplicationContext source)Create a new ContextRefreshedEvent.ContextStartedEvent(ApplicationContext source)Create a new ContextStartedEvent.ContextStoppedEvent(ApplicationContext source)Create a new ContextStoppedEvent.Uses of ApplicationContext in org.springframework.context.support
Classes in org.springframework.context.support that implement ApplicationContext Modifier and Type Class Description classAbstractApplicationContextAbstract implementation of theApplicationContextinterface.classAbstractRefreshableApplicationContextBase class forApplicationContextimplementations which are supposed to support multiple calls toAbstractApplicationContext.refresh(), creating a new internal bean factory instance every time.classAbstractRefreshableConfigApplicationContextAbstractRefreshableApplicationContextsubclass that adds common handling of specified config locations.classAbstractXmlApplicationContextConvenient base class forApplicationContextimplementations, drawing configuration from XML documents containing bean definitions understood by anXmlBeanDefinitionReader.classClassPathXmlApplicationContextStandalone XML application context, taking the context definition files from the class path, interpreting plain paths as class path resource names that include the package path (e.g.classFileSystemXmlApplicationContextStandalone XML application context, taking the context definition files from the file system or from URLs, interpreting plain paths as relative file system locations (e.g.classGenericApplicationContextGeneric ApplicationContext implementation that holds a single internalDefaultListableBeanFactoryinstance and does not assume a specific bean definition format.classGenericGroovyApplicationContextAnApplicationContextimplementation that extendsGenericApplicationContextand implementsGroovyObjectsuch that beans can be retrieved with the dot de-reference syntax instead of usingAbstractApplicationContext.getBean(java.lang.String).classGenericXmlApplicationContextConvenient application context with built-in XML support.classStaticApplicationContextApplicationContextimplementation which supports programmatic registration of beans and messages, rather than reading bean definitions from external configuration sources.Methods in org.springframework.context.support that return ApplicationContext Modifier and Type Method Description ApplicationContextApplicationObjectSupport. getApplicationContext()Return the ApplicationContext that this object is associated with.ApplicationContextAbstractApplicationContext. getParent()Return the parent context, ornullif there is no parent (that is, this context is the root of the context hierarchy).protected ApplicationContextApplicationObjectSupport. obtainApplicationContext()Obtain the ApplicationContext for actual use.Methods in org.springframework.context.support with parameters of type ApplicationContext Modifier and Type Method Description protected voidApplicationObjectSupport. initApplicationContext(ApplicationContext context)Subclasses can override this for custom initialization behavior.voidApplicationObjectSupport. setApplicationContext(ApplicationContext context)voidLiveBeansView. setApplicationContext(ApplicationContext applicationContext)voidAbstractApplicationContext. setParent(ApplicationContext parent)Set the parent of this application context.voidGenericApplicationContext. setParent(ApplicationContext parent)Set the parent of this application context, also setting the parent of the internal BeanFactory accordingly.Constructors in org.springframework.context.support with parameters of type ApplicationContext Constructor Description AbstractApplicationContext(ApplicationContext parent)Create a new AbstractApplicationContext with the given parent context.AbstractRefreshableApplicationContext(ApplicationContext parent)Create a new AbstractRefreshableApplicationContext with the given parent context.AbstractRefreshableConfigApplicationContext(ApplicationContext parent)Create a new AbstractRefreshableConfigApplicationContext with the given parent context.AbstractXmlApplicationContext(ApplicationContext parent)Create a new AbstractXmlApplicationContext with the given parent context.ClassPathXmlApplicationContext(String[] configLocations, boolean refresh, ApplicationContext parent)Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files.ClassPathXmlApplicationContext(String[] paths, Class<?> clazz, ApplicationContext parent)Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files and automatically refreshing the context.ClassPathXmlApplicationContext(String[] configLocations, ApplicationContext parent)Create a new ClassPathXmlApplicationContext with the given parent, loading the definitions from the given XML files and automatically refreshing the context.ClassPathXmlApplicationContext(ApplicationContext parent)Create a new ClassPathXmlApplicationContext for bean-style configuration.FileSystemXmlApplicationContext(String[] configLocations, boolean refresh, ApplicationContext parent)Create a new FileSystemXmlApplicationContext with the given parent, loading the definitions from the given XML files.FileSystemXmlApplicationContext(String[] configLocations, ApplicationContext parent)Create a new FileSystemXmlApplicationContext with the given parent, loading the definitions from the given XML files and automatically refreshing the context.FileSystemXmlApplicationContext(ApplicationContext parent)Create a new FileSystemXmlApplicationContext for bean-style configuration.GenericApplicationContext(DefaultListableBeanFactory beanFactory, ApplicationContext parent)Create a new GenericApplicationContext with the given DefaultListableBeanFactory.GenericApplicationContext(ApplicationContext parent)Create a new GenericApplicationContext with the given parent.StaticApplicationContext(ApplicationContext parent)Create a new StaticApplicationContext with the given parent.Uses of ApplicationContext in org.springframework.http.converter.json
Methods in org.springframework.http.converter.json with parameters of type ApplicationContext Modifier and Type Method Description Jackson2ObjectMapperBuilderJackson2ObjectMapperBuilder. applicationContext(ApplicationContext applicationContext)Set the SpringApplicationContextin order to autowire Jackson handlers (JsonSerializer,JsonDeserializer,KeyDeserializer,TypeResolverBuilderandTypeIdResolver).voidJackson2ObjectMapperFactoryBean. setApplicationContext(ApplicationContext applicationContext)Set the builderApplicationContextin order to autowire Jackson handlers (JsonSerializer,JsonDeserializer,KeyDeserializer,TypeResolverBuilderandTypeIdResolver).Uses of ApplicationContext in org.springframework.jca.context
Classes in org.springframework.jca.context that implement ApplicationContext Modifier and Type Class Description classResourceAdapterApplicationContextApplicationContextimplementation for a JCA ResourceAdapter.Uses of ApplicationContext in org.springframework.jms.config
Methods in org.springframework.jms.config with parameters of type ApplicationContext Modifier and Type Method Description voidJmsListenerEndpointRegistry. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.messaging.handler.invocation
Methods in org.springframework.messaging.handler.invocation that return ApplicationContext Modifier and Type Method Description ApplicationContextAbstractMethodMessageHandler. getApplicationContext()Methods in org.springframework.messaging.handler.invocation with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractMethodMessageHandler. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.messaging.handler.invocation.reactive
Methods in org.springframework.messaging.handler.invocation.reactive that return ApplicationContext Modifier and Type Method Description ApplicationContextAbstractMethodMessageHandler. getApplicationContext()Methods in org.springframework.messaging.handler.invocation.reactive with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractMethodMessageHandler. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.messaging.simp.config
Methods in org.springframework.messaging.simp.config that return ApplicationContext Modifier and Type Method Description ApplicationContextAbstractMessageBrokerConfiguration. getApplicationContext()Methods in org.springframework.messaging.simp.config with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractMessageBrokerConfiguration. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.scheduling.annotation
Methods in org.springframework.scheduling.annotation with parameters of type ApplicationContext Modifier and Type Method Description voidScheduledAnnotationBeanPostProcessor. setApplicationContext(ApplicationContext applicationContext)Setting anApplicationContextis optional: If set, registered tasks will be activated in theContextRefreshedEventphase; if not set, it will happen atScheduledAnnotationBeanPostProcessor.afterSingletonsInstantiated()time.Uses of ApplicationContext in org.springframework.scheduling.quartz
Methods in org.springframework.scheduling.quartz with parameters of type ApplicationContext Modifier and Type Method Description voidJobDetailFactoryBean. setApplicationContext(ApplicationContext applicationContext)voidSchedulerFactoryBean. setApplicationContext(ApplicationContext applicationContext)voidSpringBeanJobFactory. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.test.context
Methods in org.springframework.test.context that return ApplicationContext Modifier and Type Method Description ApplicationContextTestContext. getApplicationContext()Get the application context for this test context, possibly cached.ApplicationContextMergedContextConfiguration. getParentApplicationContext()Get the parentApplicationContextfor the context defined by thisMergedContextConfigurationfrom the context cache.ApplicationContextCacheAwareContextLoaderDelegate. loadContext(MergedContextConfiguration mergedContextConfiguration)Load the application context for the suppliedMergedContextConfigurationby delegating to theContextLoaderconfigured in the givenMergedContextConfiguration.ApplicationContextContextLoader. loadContext(String... locations)Loads a newcontextbased on the suppliedlocations, configures the context, and finally returns the context in fully refreshed state.ApplicationContextSmartContextLoader. loadContext(MergedContextConfiguration mergedConfig)Loads a newcontextbased on the suppliedmerged context configuration, configures the context, and finally returns the context in a fully refreshed state.Uses of ApplicationContext in org.springframework.test.context.cache
Methods in org.springframework.test.context.cache that return ApplicationContext Modifier and Type Method Description ApplicationContextContextCache. get(MergedContextConfiguration key)Obtain a cachedApplicationContextfor the given key.ApplicationContextDefaultContextCache. get(MergedContextConfiguration key)Obtain a cachedApplicationContextfor the given key.ApplicationContextDefaultCacheAwareContextLoaderDelegate. loadContext(MergedContextConfiguration mergedContextConfiguration)protected ApplicationContextDefaultCacheAwareContextLoaderDelegate. loadContextInternal(MergedContextConfiguration mergedContextConfiguration)Load theApplicationContextfor the supplied merged context configuration.Methods in org.springframework.test.context.cache with parameters of type ApplicationContext Modifier and Type Method Description voidContextCache. put(MergedContextConfiguration key, ApplicationContext context)Explicitly add anApplicationContextinstance to the cache under the given key, potentially honoring a custom eviction policy.voidDefaultContextCache. put(MergedContextConfiguration key, ApplicationContext context)Explicitly add anApplicationContextinstance to the cache under the given key, potentially honoring a custom eviction policy.Uses of ApplicationContext in org.springframework.test.context.junit.jupiter
Methods in org.springframework.test.context.junit.jupiter that return ApplicationContext Modifier and Type Method Description static ApplicationContextSpringExtension. getApplicationContext(ExtensionContext context)Get theApplicationContextassociated with the suppliedExtensionContext.Uses of ApplicationContext in org.springframework.test.context.junit4
Fields in org.springframework.test.context.junit4 declared as ApplicationContext Modifier and Type Field Description protected ApplicationContextAbstractJUnit4SpringContextTests. applicationContextTheApplicationContextthat was injected into this test instance viaAbstractJUnit4SpringContextTests.setApplicationContext(ApplicationContext).Methods in org.springframework.test.context.junit4 with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractJUnit4SpringContextTests. setApplicationContext(ApplicationContext applicationContext)Set theApplicationContextto be used by this test instance, provided viaApplicationContextAwaresemantics.Uses of ApplicationContext in org.springframework.test.context.support
Methods in org.springframework.test.context.support that return ApplicationContext Modifier and Type Method Description ApplicationContextDefaultTestContext. getApplicationContext()Get the application context for this test context.ApplicationContextAbstractDelegatingSmartContextLoader. loadContext(String... locations)AbstractDelegatingSmartContextLoaderdoes not support theContextLoader.loadContext(String...)method.ApplicationContextAbstractDelegatingSmartContextLoader. loadContext(MergedContextConfiguration mergedConfig)Delegates to an appropriate candidateSmartContextLoaderto load anApplicationContext.Uses of ApplicationContext in org.springframework.test.context.testng
Fields in org.springframework.test.context.testng declared as ApplicationContext Modifier and Type Field Description protected ApplicationContextAbstractTestNGSpringContextTests. applicationContextTheApplicationContextthat was injected into this test instance viaAbstractTestNGSpringContextTests.setApplicationContext(ApplicationContext).Methods in org.springframework.test.context.testng with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractTestNGSpringContextTests. setApplicationContext(ApplicationContext applicationContext)Set theApplicationContextto be used by this test instance, provided viaApplicationContextAwaresemantics.Uses of ApplicationContext in org.springframework.test.context.web
Methods in org.springframework.test.context.web that return ApplicationContext Modifier and Type Method Description ApplicationContextAbstractGenericWebContextLoader. loadContext(String... locations)AbstractGenericWebContextLoadershould be used as aSmartContextLoader, not as a legacyContextLoader.Uses of ApplicationContext in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server with parameters of type ApplicationContext Modifier and Type Method Description static WebTestClient.MockServerSpec<?>WebTestClient. bindToApplicationContext(ApplicationContext applicationContext)Use this option to setup a server from the Spring configuration of your application, or some subset of it.Uses of ApplicationContext in org.springframework.ui.context.support
Methods in org.springframework.ui.context.support with parameters of type ApplicationContext Modifier and Type Method Description static ThemeSourceUiApplicationContextUtils. initThemeSource(ApplicationContext context)Initialize the ThemeSource for the given application context, autodetecting a bean with the name "themeSource".Uses of ApplicationContext in org.springframework.validation.beanvalidation
Methods in org.springframework.validation.beanvalidation with parameters of type ApplicationContext Modifier and Type Method Description voidLocalValidatorFactoryBean. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.web.context
Subinterfaces of ApplicationContext in org.springframework.web.context Modifier and Type Interface Description interfaceConfigurableWebApplicationContextInterface to be implemented by configurable web application contexts.interfaceWebApplicationContextInterface to provide configuration for a web application.Methods in org.springframework.web.context that return ApplicationContext Modifier and Type Method Description protected ApplicationContextContextLoader. loadParentContext(ServletContext servletContext)Template method with default implementation (which may be overridden by a subclass), to load or obtain an ApplicationContext instance which will be used as the parent context of the root WebApplicationContext.Uses of ApplicationContext in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement ApplicationContext Modifier and Type Class Description classAbstractRefreshableWebApplicationContextAbstractRefreshableApplicationContextsubclass which implements theConfigurableWebApplicationContextinterface for web environments.classAnnotationConfigWebApplicationContextWebApplicationContextimplementation which accepts component classes as input — in particular@Configuration-annotated classes, but also plain@Componentclasses and JSR-330 compliant classes usingjavax.injectannotations.classGenericWebApplicationContextSubclass ofGenericApplicationContext, suitable for web environments.classGroovyWebApplicationContextWebApplicationContextimplementation which takes its configuration from Groovy bean definition scripts and/or XML files, as understood by aGroovyBeanDefinitionReader.classStaticWebApplicationContextStaticWebApplicationContextimplementation for testing.classXmlWebApplicationContextWebApplicationContextimplementation which takes its configuration from XML documents, understood by anXmlBeanDefinitionReader.Methods in org.springframework.web.context.support with parameters of type ApplicationContext Modifier and Type Method Description protected voidWebApplicationObjectSupport. initApplicationContext(ApplicationContext context)CallsWebApplicationObjectSupport.initServletContext(javax.servlet.ServletContext)if the given ApplicationContext is aWebApplicationContext.Uses of ApplicationContext in org.springframework.web.method
Methods in org.springframework.web.method with parameters of type ApplicationContext Modifier and Type Method Description static List<ControllerAdviceBean>ControllerAdviceBean. findAnnotatedBeans(ApplicationContext context)Find beans annotated with@ControllerAdvicein the givenApplicationContextand wrap them asControllerAdviceBeaninstances.Uses of ApplicationContext in org.springframework.web.reactive
Methods in org.springframework.web.reactive with parameters of type ApplicationContext Modifier and Type Method Description protected voidDispatcherHandler. initStrategies(ApplicationContext context)voidDispatcherHandler. setApplicationContext(ApplicationContext applicationContext)Constructors in org.springframework.web.reactive with parameters of type ApplicationContext Constructor Description DispatcherHandler(ApplicationContext applicationContext)Create a newDispatcherHandlerfor the givenApplicationContext.Uses of ApplicationContext in org.springframework.web.reactive.config
Methods in org.springframework.web.reactive.config that return ApplicationContext Modifier and Type Method Description ApplicationContextWebFluxConfigurationSupport. getApplicationContext()Methods in org.springframework.web.reactive.config with parameters of type ApplicationContext Modifier and Type Method Description voidWebFluxConfigurationSupport. setApplicationContext(ApplicationContext applicationContext)Constructors in org.springframework.web.reactive.config with parameters of type ApplicationContext Constructor Description ViewResolverRegistry(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.web.reactive.result.method.annotation
Methods in org.springframework.web.reactive.result.method.annotation with parameters of type ApplicationContext Modifier and Type Method Description voidRequestMappingHandlerAdapter. setApplicationContext(ApplicationContext applicationContext)AConfigurableApplicationContextis expected for resolving expressions in method argument default values as well as for detecting@ControllerAdvicebeans.Uses of ApplicationContext in org.springframework.web.reactive.result.view
Methods in org.springframework.web.reactive.result.view that return ApplicationContext Modifier and Type Method Description ApplicationContextAbstractView. getApplicationContext()ApplicationContextUrlBasedViewResolver. getApplicationContext()Return the containingApplicationContext, if any.protected ApplicationContextAbstractView. obtainApplicationContext()Obtain theApplicationContextfor actual use.Methods in org.springframework.web.reactive.result.view with parameters of type ApplicationContext Modifier and Type Method Description voidAbstractView. setApplicationContext(ApplicationContext applicationContext)voidUrlBasedViewResolver. setApplicationContext(ApplicationContext applicationContext)Accept the containingApplicationContext, if any.Uses of ApplicationContext in org.springframework.web.reactive.result.view.script
Methods in org.springframework.web.reactive.result.view.script that return ApplicationContext Modifier and Type Method Description ApplicationContextRenderingContext. getApplicationContext()Return the application context.Methods in org.springframework.web.reactive.result.view.script with parameters of type ApplicationContext Modifier and Type Method Description voidScriptTemplateView. setApplicationContext(ApplicationContext context)Constructors in org.springframework.web.reactive.result.view.script with parameters of type ApplicationContext Constructor Description RenderingContext(ApplicationContext applicationContext, Locale locale, Function<String,String> templateLoader, String url)Create a newRenderingContext.Uses of ApplicationContext in org.springframework.web.server
Methods in org.springframework.web.server that return ApplicationContext Modifier and Type Method Description ApplicationContextServerWebExchange. getApplicationContext()Return theApplicationContextassociated with the web application, if it was initialized with one viaWebHttpHandlerBuilder.applicationContext(ApplicationContext).ApplicationContextServerWebExchangeDecorator. getApplicationContext()Uses of ApplicationContext in org.springframework.web.server.adapter
Methods in org.springframework.web.server.adapter that return ApplicationContext Modifier and Type Method Description protected ApplicationContextAbstractReactiveWebInitializer. createApplicationContext()Return the Spring configuration that contains application beans including the ones detected byWebHttpHandlerBuilder.applicationContext.ApplicationContextDefaultServerWebExchange. getApplicationContext()ApplicationContextHttpWebHandlerAdapter. getApplicationContext()Return the configuredApplicationContext, if any.Methods in org.springframework.web.server.adapter with parameters of type ApplicationContext Modifier and Type Method Description static WebHttpHandlerBuilderWebHttpHandlerBuilder. applicationContext(ApplicationContext context)Static factory method to create a new builder instance by detecting beans in anApplicationContext.protected voidAbstractReactiveWebInitializer. refreshApplicationContext(ApplicationContext context)Refresh the given application context, if necessary.protected voidAbstractReactiveWebInitializer. registerCloseListener(ServletContext servletContext, ApplicationContext applicationContext)Register aServletContextListenerthat closes the given application context when the servlet context is destroyed.voidHttpWebHandlerAdapter. setApplicationContext(ApplicationContext applicationContext)Configure theApplicationContextassociated with the web application, if it was initialized with one viaWebHttpHandlerBuilder.applicationContext(ApplicationContext).Uses of ApplicationContext in org.springframework.web.servlet
Methods in org.springframework.web.servlet with parameters of type ApplicationContext Modifier and Type Method Description protected ObjectDispatcherServlet. createDefaultStrategy(ApplicationContext context, Class<?> clazz)Create a default strategy.protected WebApplicationContextFrameworkServlet. createWebApplicationContext(ApplicationContext parent)Instantiate the WebApplicationContext for this servlet, either a defaultXmlWebApplicationContextor acustom context class, if set.protected <T> List<T>DispatcherServlet. getDefaultStrategies(ApplicationContext context, Class<T> strategyInterface)Create a List of default strategy objects for the given strategy interface.protected <T> TDispatcherServlet. getDefaultStrategy(ApplicationContext context, Class<T> strategyInterface)Return the default strategy object for the given strategy interface.protected voidDispatcherServlet. initStrategies(ApplicationContext context)Initialize the strategy objects that this servlet uses.protected voidDispatcherServlet. onRefresh(ApplicationContext context)This implementation callsDispatcherServlet.initStrategies(org.springframework.context.ApplicationContext).protected voidFrameworkServlet. onRefresh(ApplicationContext context)Template method which can be overridden to add servlet-specific refresh work.voidFrameworkServlet. setApplicationContext(ApplicationContext applicationContext)Called by Spring viaApplicationContextAwareto inject the current application context.Uses of ApplicationContext in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation that return ApplicationContext Modifier and Type Method Description ApplicationContextWebMvcConfigurationSupport. getApplicationContext()Return the associated SpringApplicationContext.Methods in org.springframework.web.servlet.config.annotation with parameters of type ApplicationContext Modifier and Type Method Description protected voidRedirectViewControllerRegistration. setApplicationContext(ApplicationContext applicationContext)protected voidViewControllerRegistration. setApplicationContext(ApplicationContext applicationContext)voidWebMvcConfigurationSupport. setApplicationContext(ApplicationContext applicationContext)Set the SpringApplicationContext, e.g.Constructors in org.springframework.web.servlet.config.annotation with parameters of type ApplicationContext Constructor Description ResourceHandlerRegistry(ApplicationContext applicationContext, ServletContext servletContext)Create a new resource handler registry for the given application context.ResourceHandlerRegistry(ApplicationContext applicationContext, ServletContext servletContext, ContentNegotiationManager contentNegotiationManager)Create a new resource handler registry for the given application context.ResourceHandlerRegistry(ApplicationContext applicationContext, ServletContext servletContext, ContentNegotiationManager contentNegotiationManager, UrlPathHelper pathHelper)A variant ofResourceHandlerRegistry(ApplicationContext, ServletContext, ContentNegotiationManager)that also accepts theUrlPathHelperused for mapping requests to static resources.ViewControllerRegistry(ApplicationContext applicationContext)Class constructor withApplicationContext.ViewResolverRegistry(ContentNegotiationManager contentNegotiationManager, ApplicationContext context)Class constructor withContentNegotiationManagerandApplicationContext.Uses of ApplicationContext in org.springframework.web.servlet.handler
Methods in org.springframework.web.servlet.handler with parameters of type ApplicationContext Modifier and Type Method Description voidHandlerMappingIntrospector. setApplicationContext(ApplicationContext applicationContext)Constructors in org.springframework.web.servlet.handler with parameters of type ApplicationContext Constructor Description HandlerMappingIntrospector(ApplicationContext context)Deprecated.as of 4.3.12, in favor ofHandlerMappingIntrospector.setApplicationContext(org.springframework.context.ApplicationContext)Uses of ApplicationContext in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation that return ApplicationContext Modifier and Type Method Description ApplicationContextExceptionHandlerExceptionResolver. getApplicationContext()Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type ApplicationContext Modifier and Type Method Description voidExceptionHandlerExceptionResolver. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.web.servlet.resource
Methods in org.springframework.web.servlet.resource with parameters of type ApplicationContext Modifier and Type Method Description protected voidResourceUrlProvider. detectResourceHandlers(ApplicationContext appContext)Uses of ApplicationContext in org.springframework.web.servlet.view
Methods in org.springframework.web.servlet.view with parameters of type ApplicationContext Modifier and Type Method Description voidViewResolverComposite. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.web.servlet.view.groovy
Methods in org.springframework.web.servlet.view.groovy that return ApplicationContext Modifier and Type Method Description protected ApplicationContextGroovyMarkupConfigurer. getApplicationContext()Methods in org.springframework.web.servlet.view.groovy with parameters of type ApplicationContext Modifier and Type Method Description protected voidGroovyMarkupView. initApplicationContext(ApplicationContext context)Invoked at startup.voidGroovyMarkupConfigurer. setApplicationContext(ApplicationContext applicationContext)Uses of ApplicationContext in org.springframework.web.servlet.view.script
Methods in org.springframework.web.servlet.view.script that return ApplicationContext Modifier and Type Method Description ApplicationContextRenderingContext. getApplicationContext()Return the application context.Methods in org.springframework.web.servlet.view.script with parameters of type ApplicationContext Modifier and Type Method Description protected voidScriptTemplateView. initApplicationContext(ApplicationContext context)Constructors in org.springframework.web.servlet.view.script with parameters of type ApplicationContext Constructor Description RenderingContext(ApplicationContext applicationContext, Locale locale, Function<String,String> templateLoader, String url)Create a newRenderingContext.Uses of ApplicationContext in org.springframework.web.socket.adapter.standard
Methods in org.springframework.web.socket.adapter.standard that return ApplicationContext Modifier and Type Method Description protected ApplicationContextConvertingEncoderDecoderSupport. getApplicationContext()Returns the activeApplicationContext.Uses of ApplicationContext in org.springframework.web.socket.config.annotation
Methods in org.springframework.web.socket.config.annotation with parameters of type ApplicationContext Modifier and Type Method Description protected voidWebMvcStompEndpointRegistry. setApplicationContext(ApplicationContext applicationContext)