인프런 커뮤니티 질문&답변

이윤구님의 프로필 이미지

작성한 질문수

스프링 핵심 원리 - 기본편

컨테이너에 등록된 모든 빈 조회

AnnotationConfigApplicationContext 관련

해결된 질문

작성

·

353

14

AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class); 위 부분에서 AnnotationConfigApplicationContext 구현체 타입을 사용한 이유가 있을까요?

보니까 AnnotationConfigApplicationContext 타입에서만 getBeanDefinition 메서드를 사용할 수 있더라구요 그러면 AnnotationConfigApplicationContext이 ApplicationContext이 구현체인데 왜 getBeanDefinition을 못하는지가 궁금합니다.

(하지만, ApplicationContext에서는 여러 구현체 중에 AnnotationConfigApplicationContext 있는것은 확인했으나 AnnotationConfigApplicationContext클래스에서는 ApplicationContext가 아닌 AnnotationConfigRegistry 구현체로 서로 다르게 명시 되어 있는 것도 궁금합니다.

- 구현체는 하나의 인터페이스(하나의 부모)로만 구현한다고 알고 있습니다.)   

답변 3

11

김영한님의 프로필 이미지
김영한
지식공유자

안녕하세요. 윤구님 좋은 질문입니다.

사실 질문하신 모든 내용은 딱 한줄로 답변드릴 수 있습니다.

"SOLID 중 하나인 인터페이스 분리 원칙 ISP(Interface Segregation Principal)을 지키기 때문입니다."

워낙 유명한 원칙이어서 인터페이스 분리 원칙으로 검색해보시면 정말 잘 정리되어 있는 자료들이 많습니다. 그래서 딱 원하는 자료들을 찾으실 수 있을거에요^^

감사합니다.

2

저도 ApplicationContext ac 로 했다가 getBeanDefinition 이 부분이 안되서 다시 변경

0

getBeanDefinition는 AnnotationConfigApplicationContext의 부모클래스에서 상속받은 메소드라 인터페이스인 ApplicationContext는사용할 수 없군요.