이벤트 리스너 등록@EventListener@EventListener public void onApplicationEvent(MyEvent event) { // doSomething}위와 같이 @EventListener로 등록된 이벤트 리스너는 EventListenerMethodProcessor에 의해 컨텍스트에 ApplicationEventListener로 등록된다. public class EventListenerMethodProcessor implements SmartInitializingSingleton, ApplicationContextAware, BeanFactoryPostProcessor { // ... @Override public voi..