AnnotationConfigReactiveWebServerApplicationContext

ReactiveWebServerApplicationContext that accepts annotated classes as input - in particular @Configuration-annotated classes, but also plain @Component classes and JSR-330 compliant classes using javax.inject annotations. Allows for registering classes one by one (specifying class names as config location) as well as for classpath scanning (specifying base packages as config location).

Note: In case of multiple @Configuration classes, later @Bean definitions will override ones defined in earlier loaded files. This can be leveraged to deliberately override certain bean definitions through an extra Configuration class.

Author

Phillip Webb

Since

2.0.0

See also

Constructors

constructor()
Create a new AnnotationConfigReactiveWebServerApplicationContext that needs to be populated through register calls and then manually refreshed.
constructor(beanFactory: DefaultListableBeanFactory)
Create a new AnnotationConfigReactiveWebServerApplicationContext with the given DefaultListableBeanFactory.
constructor(annotatedClasses: Array<Class<out Any>>)
Create a new AnnotationConfigReactiveWebServerApplicationContext, deriving bean definitions from the given annotated classes and automatically refreshing the context.
constructor(basePackages: Array<String>)
Create a new AnnotationConfigReactiveWebServerApplicationContext, scanning for bean definitions in the given packages and automatically refreshing the context.

Properties

Link copied to clipboard
val APPLICATION_EVENT_MULTICASTER_BEAN_NAME: String = "applicationEventMulticaster"
Link copied to clipboard
val APPLICATION_STARTUP_BEAN_NAME: String = "applicationStartup"
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val CLASSPATH_ALL_URL_PREFIX: String = "classpath*:"
Link copied to clipboard
val CLASSPATH_URL_PREFIX: String = "classpath:"
Link copied to clipboard
Link copied to clipboard
val CONVERSION_SERVICE_BEAN_NAME: String = "conversionService"
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val ENVIRONMENT_BEAN_NAME: String = "environment"
Link copied to clipboard
Link copied to clipboard
open var id: String
Link copied to clipboard
val LIFECYCLE_PROCESSOR_BEAN_NAME: String = "lifecycleProcessor"
Link copied to clipboard
val LOAD_TIME_WEAVER_BEAN_NAME: String = "loadTimeWeaver"
Link copied to clipboard
val MESSAGE_SOURCE_BEAN_NAME: String = "messageSource"
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val SHUTDOWN_HOOK_THREAD_NAME: String = "SpringContextShutdownHook"
Link copied to clipboard
open val startupDate: Long
Link copied to clipboard
val SYSTEM_ENVIRONMENT_BEAN_NAME: String = "systemEnvironment"
Link copied to clipboard
val SYSTEM_PROPERTIES_BEAN_NAME: String = "systemProperties"

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun close()
Link copied to clipboard
open fun containsBean(name: String): Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun <A : Annotation?> findAllAnnotationsOnBean(beanName: String, annotationType: Class<A>, allowFactoryBeanInit: Boolean): Set<A>
Link copied to clipboard
open fun <A : Annotation?> findAnnotationOnBean(beanName: String, annotationType: Class<A>): A
Link copied to clipboard
open fun getAliases(name: String): Array<String>
Link copied to clipboard
Link copied to clipboard
open fun getBean(name: String): Any
open fun <T> getBean(name: String, requiredType: Class<T>): T
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun getBeanNamesForAnnotation(annotationType: Class<out Annotation>): Array<String>
Link copied to clipboard
Link copied to clipboard
open fun <T> getBeanProvider(requiredType: Class<T>): ObjectProvider<T>
Link copied to clipboard
open fun <T> getBeansOfType(type: Class<T>): Map<String, T>
Link copied to clipboard
open fun getBeansWithAnnotation(annotationType: Class<out Annotation>): Map<String, Any>
Link copied to clipboard
abstract fun getEnvironment(): Environment
Link copied to clipboard
open fun getMessage(code: String, args: Array<Any>, defaultMessage: String, locale: Locale): String
Link copied to clipboard
Link copied to clipboard
open fun getResource(location: String): Resource
Link copied to clipboard
open fun <T> getResourceCache(valueType: Class<T>): Map<Resource, T>
Link copied to clipboard
open fun getResources(locationPattern: String): Array<Resource>
Link copied to clipboard
Returns the server namespace if the specified context is a WebServerApplicationContext.
Link copied to clipboard
open fun getType(name: String): Class<out Any>
Link copied to clipboard
Returns the WebServer that was created by the context or null if the server has not yet been created.
Link copied to clipboard
open fun hasServerNamespace(context: ApplicationContext, serverNamespace: String): Boolean
Returns true if the specified context is a WebServerApplicationContext with a matching server namespace.
Link copied to clipboard
open fun isActive(): Boolean
Link copied to clipboard
open fun isAlias(beanName: String): Boolean
Link copied to clipboard
Link copied to clipboard
open fun isBeanNameInUse(beanName: String): Boolean
Link copied to clipboard
open fun isPrototype(name: String): Boolean
Link copied to clipboard
open fun isRunning(): Boolean
Link copied to clipboard
open fun isSingleton(name: String): Boolean
Link copied to clipboard
open fun isTypeMatch(name: String, typeToMatch: ResolvableType): Boolean
Link copied to clipboard
Link copied to clipboard
fun refresh()
open fun refresh()
Link copied to clipboard
open fun refreshForAotProcessing(runtimeHints: RuntimeHints)
Link copied to clipboard
fun register(annotatedClasses: Array<Class<out Any>>)
Register one or more annotated classes to be processed.
Link copied to clipboard
open fun registerAlias(beanName: String, alias: String)
Link copied to clipboard
open fun <T> registerBean(beanClass: Class<T>, constructorArgs: Array<Any>)
Link copied to clipboard
open fun registerBeanDefinition(beanName: String, beanDefinition: BeanDefinition)
Link copied to clipboard
Link copied to clipboard
open fun removeAlias(alias: String)
Link copied to clipboard
Link copied to clipboard
open fun removeBeanDefinition(beanName: String)
Link copied to clipboard
fun scan(basePackages: Array<String>)
Perform a scan within the specified base packages.
Link copied to clipboard
open fun setAllowBeanDefinitionOverriding(allowBeanDefinitionOverriding: Boolean)
Link copied to clipboard
open fun setAllowCircularReferences(allowCircularReferences: Boolean)
Link copied to clipboard
open fun setBeanNameGenerator(beanNameGenerator: BeanNameGenerator)
Link copied to clipboard
Delegates given environment to underlying AnnotatedBeanDefinitionReader and ClassPathBeanDefinitionScanner members.
Link copied to clipboard
open fun setResourceLoader(resourceLoader: ResourceLoader)
Link copied to clipboard
open fun setScopeMetadataResolver(scopeMetadataResolver: ScopeMetadataResolver)
Set the ScopeMetadataResolver to use for detected bean classes.
Link copied to clipboard
open fun start()
Link copied to clipboard
open fun stop()
Link copied to clipboard
open fun toString(): String