Versions Compared

Key

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

...

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

 

1. 컴포넌트 스캐닝

@ComponentScan

  • 모듈 : spring-context
  • 패키지 : org.springframework.context.annotation.ComponentScan

...

  • 모듈 : spring-context
  • 패키지 : org.springframework.stereotype.Controller

2. 오토와이어링

@Autowired

  • 모듈 : spring-context
  • 패키지 : org.springframework.beans.factory.annotation.Autowired

...