Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 841 Bytes

File metadata and controls

13 lines (11 loc) · 841 Bytes

Spring Container(IoC container)

  • IoC : Inversion of Control
    • 혹은 DI 라고 알려져 있기도 함 (Dependency Injection)
  • Bean이라 불리는 객체를 인스턴스화하고 구성하며 관리하는 경량 컨테이너 프레임워크이다.
  • Bean 들의 의존성을 관리하기 위한 스프링의 핵심 기술이다
  • 컨테이너는 Bean 의 생명주기를 관리하며 Configuration Metadata를 통해 Bean 을 구성하는 역할을 수행한다
    • XML, Annotations, Java Code 등을 통해 Bean 의 구성정보를 받아 Bean 을 구성한다

Spring Container

Reference