Uses of Interface
org.springframework.boot.ConfigurableBootstrapContext
Packages that use ConfigurableBootstrapContext
Package
Description
Core Spring Boot classes.
External configuration support allowing 'application.properties' to be loaded and used
within a Spring Boot application.
ApplicationEvents
triggered by
Spring Boot.Spring
Environment
support.-
Uses of ConfigurableBootstrapContext in org.springframework.boot
Classes in org.springframework.boot that implement ConfigurableBootstrapContextMethods in org.springframework.boot with parameters of type ConfigurableBootstrapContextModifier and TypeMethodDescriptiondefault void
SpringApplicationRunListener.environmentPrepared
(ConfigurableBootstrapContext bootstrapContext, ConfigurableEnvironment environment) Called once the environment has been prepared, but before theApplicationContext
has been created.default void
SpringApplicationRunListener.starting
(ConfigurableBootstrapContext bootstrapContext) Called immediately when the run method has first started. -
Uses of ConfigurableBootstrapContext in org.springframework.boot.context.config
Methods in org.springframework.boot.context.config that return ConfigurableBootstrapContextModifier and TypeMethodDescriptionConfigDataLoaderContext.getBootstrapContext()
Provides access to theConfigurableBootstrapContext
shared across allEnvironmentPostProcessors
.ConfigDataLocationResolverContext.getBootstrapContext()
Provides access to theConfigurableBootstrapContext
shared across allEnvironmentPostProcessors
.Methods in org.springframework.boot.context.config with parameters of type ConfigurableBootstrapContextModifier and TypeMethodDescriptionstatic void
ConfigDataEnvironmentPostProcessor.applyTo
(ConfigurableEnvironment environment, ResourceLoader resourceLoader, ConfigurableBootstrapContext bootstrapContext, String... additionalProfiles) ApplyConfigData
post-processing to an existingEnvironment
.static void
ConfigDataEnvironmentPostProcessor.applyTo
(ConfigurableEnvironment environment, ResourceLoader resourceLoader, ConfigurableBootstrapContext bootstrapContext, Collection<String> additionalProfiles) ApplyConfigData
post-processing to an existingEnvironment
.static void
ConfigDataEnvironmentPostProcessor.applyTo
(ConfigurableEnvironment environment, ResourceLoader resourceLoader, ConfigurableBootstrapContext bootstrapContext, Collection<String> additionalProfiles, ConfigDataEnvironmentUpdateListener environmentUpdateListener) ApplyConfigData
post-processing to an existingEnvironment
.Constructors in org.springframework.boot.context.config with parameters of type ConfigurableBootstrapContextModifierConstructorDescriptionConfigDataEnvironmentPostProcessor
(DeferredLogFactory logFactory, ConfigurableBootstrapContext bootstrapContext) -
Uses of ConfigurableBootstrapContext in org.springframework.boot.context.event
Methods in org.springframework.boot.context.event that return ConfigurableBootstrapContextModifier and TypeMethodDescriptionApplicationEnvironmentPreparedEvent.getBootstrapContext()
Return the bootstrap context.ApplicationStartingEvent.getBootstrapContext()
Return the bootstrap context.Constructors in org.springframework.boot.context.event with parameters of type ConfigurableBootstrapContextModifierConstructorDescriptionApplicationEnvironmentPreparedEvent
(ConfigurableBootstrapContext bootstrapContext, SpringApplication application, String[] args, ConfigurableEnvironment environment) Create a newApplicationEnvironmentPreparedEvent
instance.ApplicationStartingEvent
(ConfigurableBootstrapContext bootstrapContext, SpringApplication application, String[] args) Create a newApplicationStartingEvent
instance. -
Uses of ConfigurableBootstrapContext in org.springframework.boot.env
Methods in org.springframework.boot.env with parameters of type ConfigurableBootstrapContextModifier and TypeMethodDescriptionEnvironmentPostProcessorsFactory.getEnvironmentPostProcessors
(DeferredLogFactory logFactory, ConfigurableBootstrapContext bootstrapContext) Create all requestedEnvironmentPostProcessor
instances.