Uses of Class
org.springframework.boot.context.event.SpringApplicationEvent
Package
Description
Spring Boot's auto-configuration capabilities.
Classes related to Spring's
ApplicationContext
.ApplicationEvents
triggered by
Spring Boot.-
Uses of SpringApplicationEvent in org.springframework.boot.autoconfigure
Modifier and TypeMethodDescriptionvoid
BackgroundPreinitializer.onApplicationEvent
(SpringApplicationEvent event) -
Uses of SpringApplicationEvent in org.springframework.boot.context
Modifier and TypeMethodDescriptionvoid
ApplicationPidFileWriter.onApplicationEvent
(SpringApplicationEvent event) Modifier and TypeMethodDescriptionvoid
ApplicationPidFileWriter.setTriggerEventType
(Class<? extends SpringApplicationEvent> triggerEventType) Sets the type of application event that will trigger writing of the PID file. -
Uses of SpringApplicationEvent in org.springframework.boot.context.event
Modifier and TypeClassDescriptionclass
Event published when aSpringApplication
is starting up and theApplicationContext
is prepared and ApplicationContextInitializers have been called but before any bean definitions are loaded.class
Event published when aSpringApplication
is starting up and theEnvironment
is first available for inspection and modification.class
Event published by aSpringApplication
when it fails to start.class
Event published as when aSpringApplication
is starting up and theApplicationContext
is fully prepared but not refreshed.class
Event published as late as conceivably possible to indicate that the application is ready to service requests.class
Event published once the application context has been refreshed but before anyapplication
andcommand line
runners have been called.class
Event published as early as conceivably possible as soon as aSpringApplication
has been started - before theEnvironment
orApplicationContext
is available, but after theApplicationListener
s have been registered.