Class ApplicationContextInitializedEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.boot.context.event.SpringApplicationEvent
org.springframework.boot.context.event.ApplicationContextInitializedEvent
- All Implemented Interfaces:
- Serializable
Event published when a 
SpringApplication is starting up and the
 ApplicationContext is prepared and ApplicationContextInitializers have been
 called but before any bean definitions are loaded.- Since:
- 2.1.0
- Author:
- Artsiom Yudovin
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionApplicationContextInitializedEvent(SpringApplication application, String[] args, ConfigurableApplicationContext context) Create a newApplicationContextInitializedEventinstance.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the application context.Methods inherited from class org.springframework.boot.context.event.SpringApplicationEventgetArgs, getSpringApplicationMethods inherited from class org.springframework.context.ApplicationEventgetTimestampMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
ApplicationContextInitializedEventpublic ApplicationContextInitializedEvent(SpringApplication application, String[] args, ConfigurableApplicationContext context) Create a newApplicationContextInitializedEventinstance.- Parameters:
- application- the current application
- args- the arguments the application is running with
- context- the context that has been initialized
 
 
- 
- 
Method Details- 
getApplicationContextReturn the application context.- Returns:
- the context
 
 
-