Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 컴포넌트 스캐닝 - 스프링은 애플리케이션 컨텍스트에서 생성되는 빈을 자동으로 발견함
  2. 오토와이어링 - 스프링은 자동으로 빈 의존성을 주입함(DI)

 

컴포넌트 스캐닝

1. 스프링 빈 지정하기

    • 애노테이션을 활용하여 스프링 빈 객체임을 지정함

@Component

      • 모듈 : spring-context
      • 클래스 : org.springframework.stereotype.Component
      • 버전 : 2.5 이상

...

      • 모듈 : spring-context
      • 클래스 : org.springframework.context.annotation.ComponentScan\
      • 버전 : 3.1 이상

 

오토와이어링

  • 자동으로 빈 와이어링 하기

@Autowired

      • 모듈 : spring-context
      • 클래스 : org.springframework.beans.factory.annotation.Autowired
      • 버전 : 2.5 이상

...