Package org.springframework.context
Interface ApplicationStartupAware
- All Superinterfaces:
Aware
- All Known Implementing Classes:
ConfigurationClassPostProcessor
Interface to be implemented by any object that wishes to be notified
of the
ApplicationStartup
that it runs with.- Since:
- 5.3
- Author:
- Brian Clozel
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setApplicationStartup
(ApplicationStartup applicationStartup) Set the ApplicationStartup that this object runs with.
-
Method Details
-
setApplicationStartup
Set the ApplicationStartup that this object runs with.Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked before ApplicationContextAware's setApplicationContext.
- Parameters:
applicationStartup
- application startup to be used by this object
-