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
abstract fun create(webApplicationType: WebApplicationType): ConfigurableApplicationContext
Creates the application context for a SpringApplication, respecting the given webApplicationType.
Link copied to clipboard
Create a new Environment to be set on the created application context.
Link copied to clipboard
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
Creates an ApplicationContextFactory that will create contexts by instantiating the given contextClass through its primary constructor.