일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- IntelliJ
- ubuntu
- Spring Batch
- jenkins
- javascript
- Git
- php
- AWS
- JVM
- redis
- jsp
- Web Server
- laravel
- Oracle
- Spring
- ReactJS
- 요리
- MySQL
- elasticsearch
- Spring Boot
- springboot
- devops
- it
- Design Patterns
- tool
- linux
- Gradle
- java
- db
- 맛집
Archives
- Today
- Total
아무거나
[Spring Boot] @ComponentScan 이란 본문
반응형
@ComponentScan
- Desc: Stereotype Annotaion이 붙은 Bean들을 자동으로 스캔해서 등록해준다. Stereotype Annotaion(ex: @Component, @Repository, @Service, @Controller 등..)이란 Bean으로 등록하기 위한 Annotation을 뜻함
- [Example Code]
@ComponentScan("com.bong.myPackage") @ComponentScan(basePackages={"com.bkjeon", "com.bong"}) @ComponentScan({"com.bkjeon", "com.bong"})
@ComponentScan(basePackageClasses=TestCode.class) public interface TestCode{} // TestCode 인터페이스가 존재하는 패키지가 Bean Scanning의 기준이 된다.
- [Example Code]
반응형
'Java & Kotlin > Spring' 카테고리의 다른 글
[SpringBoot] Redundant declaration: @SpringBootApplication already applies given @ComponentScan (0) | 2019.04.15 |
---|---|
[SpringBoot] 간단한 Interceptor 구현 (0) | 2019.01.16 |
[Spring Boot] 스케줄링 구현 (0) | 2019.01.16 |
[Spring Boot] Spring Boot에서 Tomcat연동 설정 (0) | 2019.01.07 |
[Spring Boot] logback을 이용한 sql log 콘솔에 출력 (0) | 2018.12.27 |
Comments