Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- application.properties
- @ConfigurationProperties
- 백트래킹
- 브루트포스
- cors
- 알고리즘
- Application Runner
- 다익스트라
- rest api
- AuthenticationPrincipal
- 리소스 서버
- EnableAutoConfiguration
- 정적 리소스
- JPA
- webjar
- Application Argument
- HATEOAS
- HttpMessageConverters
- OAuth2
- 외부설정
- Application Event
- 리소스핸들러
- WebApplication Type
- 백기선
- 백준
- 스프링 부트
- Spring Security
- @Profile
- JsonSerializer
- 스프링부트
Archives
- Today
- Total
아카이브
[스프링 부트 개념과 활용] 자동 설정 @EnableAutoConfiguration 본문
@SpringBootApplication는 사실 @SpringBootConfiguration + @ComponentScan + @EnableAutoConfiguration 3가지가 합쳐진 것이다.
빈은 2단계 과정을 거쳐 등록된다
- 먼저 1단계로 @ComponentScan (패키지 이하 @Component를 스캔하여 Bean으로 등록)
- (@Configuration, @Repository, @Service, @Controller, @RestController 등등)
- 다음2단계로 @EnableAutoConfiguration 으로 spring boot의 meta파일(spring.factories)을 통해, 미리 정의되어 있는 @Configuration 들을 Bean으로 등록한다
- spring.factories ? spring-boot-autoconfigure의 META-INF 안에 있다
여러가지 autoConfiguration들이 정의되어 있는데, 이와 함께 @ConditionalOnXxxYyyZzz 등의 Bean condition 조건에 따라 Bean 등록을 제어할 수 있다
즉, @EnableAutoConfiguration은 Spring Boot의 자동설정을 지원하는 핵심이다
'Spring > 스프링 부트 개념과 활용' 카테고리의 다른 글
[스프링 부트 개념과 활용] Profile (0) | 2021.01.03 |
---|---|
[스프링 부트 개념과 활용] 외부설정1 - Application.properties (0) | 2021.01.03 |
[스프링 부트 개념과 활용] Application Event / Type / Argument / Runner (0) | 2021.01.03 |
[스프링 부트 개념과 활용] 독립적으로 실행 가능한 JAR (0) | 2021.01.03 |
[스프링 부트 개념과 활용] 내장 웹 서버의 이해 2 ( HTTP / HTTPS) (0) | 2021.01.03 |