ApplicationContextFactory
Strategy interface for creating the ConfigurableApplicationContext used by a SpringApplication. Created contexts should be returned in their default form, with the SpringApplication
responsible for configuring and refreshing the context.
Author
Andy Wilkinson
Phillip Webb
Since
2.4.0
Properties
Link copied to clipboard
A default ApplicationContextFactory implementation that will create an appropriate context for the WebApplicationType.
Functions
Link copied to clipboard
Link copied to clipboard
Create a new Environment to be set on the created application context.
Link copied to clipboard
open fun getEnvironmentType(webApplicationType: WebApplicationType): Class<out ConfigurableEnvironment>
Return the Environment type expected to be set on the created application context.
Link copied to clipboard
Creates an
ApplicationContextFactory
that will create contexts by calling the given Supplier.Link copied to clipboard
open fun ofContextClass(contextClass: Class<out ConfigurableApplicationContext>): ApplicationContextFactory
Creates an
ApplicationContextFactory
that will create contexts by instantiating the given contextClass
through its primary constructor.