Interface AssertableReactiveWebApplicationContext
- All Superinterfaces:
- ApplicationContext, ApplicationContextAssertProvider<ConfigurableReactiveWebApplicationContext>, ApplicationEventPublisher, org.assertj.core.api.AssertProvider<ApplicationContextAssert<ConfigurableReactiveWebApplicationContext>>, AutoCloseable, BeanFactory, Closeable, ConfigurableApplicationContext, ConfigurableReactiveWebApplicationContext, EnvironmentCapable, HierarchicalBeanFactory, Lifecycle, ListableBeanFactory, MessageSource, ReactiveWebApplicationContext, ResourceLoader, ResourcePatternResolver
public interface AssertableReactiveWebApplicationContext
extends ApplicationContextAssertProvider<ConfigurableReactiveWebApplicationContext>, ConfigurableReactiveWebApplicationContext
A 
ReactiveWebApplicationContext that additionally supports AssertJ style
assertions. Can be used to decorate an existing reactive web application context or an
application context that failed to start.
See ApplicationContextAssertProvider for more details.
- Since:
- 2.0.0
- Author:
- Phillip Webb
- See Also:
- 
Field SummaryFields inherited from interface BeanFactoryFACTORY_BEAN_PREFIX, FACTORY_BEAN_PREFIX_CHARFields inherited from interface ConfigurableApplicationContextAPPLICATION_STARTUP_BEAN_NAME, BOOTSTRAP_EXECUTOR_BEAN_NAME, CONFIG_LOCATION_DELIMITERS, CONVERSION_SERVICE_BEAN_NAME, ENVIRONMENT_BEAN_NAME, LOAD_TIME_WEAVER_BEAN_NAME, SHUTDOWN_HOOK_THREAD_NAME, SYSTEM_ENVIRONMENT_BEAN_NAME, SYSTEM_PROPERTIES_BEAN_NAMEFields inherited from interface ResourceLoaderCLASSPATH_URL_PREFIXFields inherited from interface ResourcePatternResolverCLASSPATH_ALL_URL_PREFIX
- 
Method SummaryStatic MethodsModifier and TypeMethodDescriptionget(Supplier<? extends ConfigurableReactiveWebApplicationContext> contextSupplier) Factory method to create a newAssertableReactiveWebApplicationContextinstance.get(Supplier<? extends ConfigurableReactiveWebApplicationContext> contextSupplier, Class<?>... additionalContextInterfaces) Factory method to create a newAssertableReactiveWebApplicationContextinstance.Methods inherited from interface ApplicationContextgetApplicationName, getAutowireCapableBeanFactory, getDisplayName, getId, getParent, getStartupDateMethods inherited from interface ApplicationContextAssertProviderassertThat, close, getSourceApplicationContext, getSourceApplicationContext, getStartupFailureMethods inherited from interface ApplicationEventPublisherpublishEvent, publishEventMethods inherited from interface BeanFactorycontainsBean, getAliases, getBean, getBean, getBean, getBean, getBean, getBeanProvider, getBeanProvider, getBeanProvider, getType, getType, isPrototype, isSingleton, isTypeMatch, isTypeMatchMethods inherited from interface ConfigurableApplicationContextaddApplicationListener, addBeanFactoryPostProcessor, addProtocolResolver, close, getApplicationStartup, getBeanFactory, getEnvironment, isActive, isClosed, pause, refresh, registerShutdownHook, removeApplicationListener, restart, setApplicationStartup, setClassLoader, setEnvironment, setId, setParentMethods inherited from interface HierarchicalBeanFactorycontainsLocalBean, getParentBeanFactoryMethods inherited from interface ListableBeanFactorycontainsBeanDefinition, findAllAnnotationsOnBean, findAnnotationOnBean, findAnnotationOnBean, getBeanDefinitionCount, getBeanDefinitionNames, getBeanNamesForAnnotation, getBeanNamesForType, getBeanNamesForType, getBeanNamesForType, getBeanNamesForType, getBeanProvider, getBeanProvider, getBeansOfType, getBeansOfType, getBeansWithAnnotationMethods inherited from interface MessageSourcegetMessage, getMessage, getMessageMethods inherited from interface ResourceLoadergetClassLoader, getResourceMethods inherited from interface ResourcePatternResolvergetResources
- 
Method Details- 
getstatic AssertableReactiveWebApplicationContext get(Supplier<? extends ConfigurableReactiveWebApplicationContext> contextSupplier) Factory method to create a newAssertableReactiveWebApplicationContextinstance.- Parameters:
- contextSupplier- a supplier that will either return a fully configured- ConfigurableReactiveWebApplicationContextor throw an exception if the context fails to start.
- Returns:
- a AssertableReactiveWebApplicationContextinstance
 
- 
getstatic AssertableReactiveWebApplicationContext get(Supplier<? extends ConfigurableReactiveWebApplicationContext> contextSupplier, Class<?>... additionalContextInterfaces) Factory method to create a newAssertableReactiveWebApplicationContextinstance.- Parameters:
- contextSupplier- a supplier that will either return a fully configured- ConfigurableReactiveWebApplicationContextor throw an exception if the context fails to start.
- additionalContextInterfaces- and additional context interfaces to add to the proxy
- Returns:
- a AssertableReactiveWebApplicationContextinstance
- Since:
- 3.4.0
 
 
-