Add ApplicationListener example

This commit is contained in:
Grzegorz Piwowarek
2016-08-14 08:13:04 +02:00
parent 28f1fe27e2
commit 24e033a24b
3 changed files with 29 additions and 0 deletions
@@ -0,0 +1,16 @@
package org.baeldung.startup;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
@Component
public class StartupApplicationListenerExample implements ApplicationListener<ContextRefreshedEvent> {
public static int counter;
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
counter++;
}
}