CommentPushNotification 클래스는 다음과 같다.
@Component
@Qualifier("PUSH") ← @Qualifier로 “PUSH” 구현이라고 명명한다.
public class CommentPushNotificationProxy
implements CommentNotificationProxy {
// 코드 생략
}
EmailCommentNotificationProxy 클래스는 다음과 같다.
@Component
@Qualifier("EMAIL") ← @Qualifier로 “EMAIL” 구현이라고 명명한다.
public class EmailCommentNotificationProxy
implements CommentNotificationProxy {
// 코드 생략
}