ApplicationEventPublisher Interface Spring Framework는 이벤트 기반 프로그래밍(Event-driven programming)을 지원합니다. 이벤트 기반 프로그래밍은 특정 이벤트 발생 시 해당 이벤트를 처리하는 동작을 하는 방식입니다. Spring Framework에서는 이벤트 발생 시 특정 작업을 수행하는 기능을 ApplicationEventPublisher와 @EventListener를 통해 제공합니다. @FunctionalInterface public interface ApplicationEventPublisher { /** * Notify all matching listeners registered with this * application of an app..