도메인 이벤트 Entity 의 변화를 이벤트로 간주 ApplicationContext 의 EventPublisher 의 기능을 이용하여 EventListener 로 받아줌 이벤트 기반 프로그래밍 에 사용 이벤트 작성 방법.(Spring Frame Work ApplicationContext 의 EventPublisher 에 기술 되어 있음) ApplicationEvent 구현클래스 작성 public class PostPublishedEvent extends ApplicationEvent { private final Post post; public PostPublishedEvent(Object source) { super(source); this.post = (Post)source; } public Post..