@Component
2023. 5. 30. 14:59ㆍ기술 창고/어노테이션 창고
728x90
SMALL
@Component
클래스의 인스턴스를 Spring 프레임워크에서 관리하도록 Bean 객체로 지정하는 어노테이션.
클래스 단에 적용시키며, @ComponentScan을 통해 Spring Bean 이 생성되고 관리되게 됩니다.
@Component // Component 적용 및 Bean 등록
public class SuperContraGame implements GamingConsole{
~ 로직 ~
}
728x90
반응형
LIST
'기술 창고 > 어노테이션 창고' 카테고리의 다른 글
@Primary (0) | 2023.05.30 |
---|---|
@Qualifier (0) | 2023.05.30 |
@ComponentScan (0) | 2023.05.30 |
@Bean (0) | 2022.12.23 |
@Configuration (0) | 2022.12.23 |