Annotation = 주석?
컴파일러가 Anotation을 만나면 미리 정의 된 일이 동작한다.
@SpringBootApplication
-> 들어가보면
@SpringBootConfiguration -> 빈을 만들어준다.
@EnableAutoConfiguration -> 2번 Resoruse 의 Meta-info- spring factories의 EnableAutoConfigration이 있는 Compent들과 연관이 있는 외부클래스들을 가져와 빈을 등록한다.
@ComponentScan -> 1번 @Component 붙어있는 객체들을 스캔을 하면서 빈으로 등록한다
@Filter
@inrherited
@Documented
@Retention
@Target
www.youtube.com/watch?v=OXILjfY8edw&list=PLgXGHBqgT2TvpJ_p9L_yZKPifgdBOzdVH&index=88
'Back-end > SpringBoot' 카테고리의 다른 글
Spring Boot vs Spring (0) | 2021.05.01 |
---|