
@Component, @Bean 어노테이션
·
Spring
@Component 클래스를 Spring에서 알아서 관리해주는 자바 빈으로 표시하는 데 사용 Spring이 자동으로 클래스의 인스턴스를 생성하고 종속성을 포함하여 각종 lifecycle 관리 @Component public class MyComponent { // ... } @Autowired ApplicationContext에 종속성을 주입 Spring에서 필요한 종속성의 인스턴스를 자동으로 주입 @Component public class MyComponent { private MyService myService; @Autowired public MyComponent(MyService myService) { this.myService = myService; } // ... } @Service, @Con..