GenericReactiveWebApplicationContext Class — spring-boot Architecture
Architecture documentation for the GenericReactiveWebApplicationContext class in GenericReactiveWebApplicationContext.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/web/context/reactive/GenericReactiveWebApplicationContext.java lines 31–64
public class GenericReactiveWebApplicationContext extends GenericApplicationContext
implements ConfigurableReactiveWebApplicationContext {
/**
* Create a new {@link GenericReactiveWebApplicationContext}.
* @see #registerBeanDefinition
* @see #refresh
*/
public GenericReactiveWebApplicationContext() {
}
/**
* Create a new {@link GenericReactiveWebApplicationContext} with the given
* DefaultListableBeanFactory.
* @param beanFactory the DefaultListableBeanFactory instance to use for this context
* @see #registerBeanDefinition
* @see #refresh
*/
public GenericReactiveWebApplicationContext(DefaultListableBeanFactory beanFactory) {
super(beanFactory);
}
@Override
protected ConfigurableEnvironment createEnvironment() {
return new StandardReactiveWebEnvironment();
}
@Override
protected Resource getResourceByPath(String path) {
// We must be careful not to expose classpath resources
return new FilteredReactiveWebContextResource(path);
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free