스프링 BeanFactory 컨테이너

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:50 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

Spring BeanFactory Container
스프링 BeanFactory 컨테이너
  • 스프링 IoC 컨테이너의 일종
  • 의존성 주입(DI)을 지원하는 컨테이너
  • 빈의 제어(생성·관계설정 등)를 담당하는 IoC 오브젝트
  • 인스턴스를 생성하고 설정하고 bean들을 관리하는 컨테이너
  • org.springframework.beans.factory.BeanFactory 인터페이스로 정의됨
Resource res = new FileSystemResource("beans.xml");
XmlBeanFactory factory = new XmlBeanFactory(res);
ClassPathResource res = new ClassPathResource("beans.xml");
XmlBeanFactory factory = new XmlBeanFactory(res);
ClassPathXmlApplicationContext appContext = new ClassPathXmlApplicationContext(
        new String[] {"applicationContext.xml", "applicationContext-part2.xml"});
// of course, an ApplicationContext is just a BeanFactory
BeanFactory factory = (BeanFactory) appContext;

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}