Not long ago I learned the hard way the way spring handles earlyApplication events when we started having problems in one of our projects
Basically we were using a MongoDB database as a cache layer, so when the application would startup we would pull most of the data from our RDBMS do some processing and denormalisation then fill the MongoDB with data
The application had been running mostly fine for some time but we saw some memory issues as the data kept growing within the application and I suspected a Memory leak issue
So I decided to do a java heap dump to try to see what was happening, and I found the culprit; way down the piping of spring the org.springframework.context.support.AbstractApplicationContext class had a private property earlyApplicationEvents that was keeping references to more than 3 million instances of BasicDBObject that were not Garbage collected even though they were no longer in scope and were already written to the database
After scouring the internet a fellow developer pointed out to me that the property : earlyApplicationEvents is :
So with this information I could simple push my heavy duty task later on the spring application events lifecycle by using spring's handy application events mechanism.
For those who don't know what application events are; application events are available since the very beginning of the Spring framework as a mean for loosely coupled components to exchange information; the main application events are :
- ContextRefreshedEvent : published when the ApplicationContext is either initialized or refreshed
- ContextStartedEvent : when the ApplicationContext is started using the start() method on the ConfigurableApplicationContext interface. You can poll your database or you can restart any stopped application after receiving this event
- ContextStoppedEvent : published when the ApplicationContext is stopped using the stop() method on the ConfigurableApplicationContext interface. You can do required housekeep work after receiving this event.
- ContextClosedEvent : published when the ApplicationContext is closed using the close() method on the ConfigurableApplicationContext interface. A closed context reaches its end of life; it cannot be refreshed or restarted.
in my case after the context has been refreshed like so :
@Configuration public class MyConfigClass implements ApplicationListener<ContextRefreshedEvent>{ //Misc code private final InitializationService initializationService; @Autowired public MyConfigClass(InitializationService initializationService){ this. initializationService = initializationService; } @Override public void onApplicationEvent(ContextRefreshedEvent event) { initializationService.init(); } }
So if I can leave you with a parting "word of wisdom" : Be careful WHEN you are running certain operations in respect to the Spring Application events lifecycle and the possible side-effects that this can cause
for more info on application events please read the spring official documentation