Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- kotlin
- Spring JPA
- elasticsearch
- list
- spring
- spring MVC
- EnableWebMvc
- asyncconfigurer
- @FunctionalInterface
- wire type
- jpa
- Sleuth
- traceId
- java
- ResponseBody
- asynccustomautoconfiguration
- java list
- map
- aws secretmanager
- java.util.list
- grpc
- micrometer tracing
- HashMap
- SpringMVC
- CompletableFuture
- awssecretsmanagerpropertysources
- java lambda
- traceasynccustomautoconfiguration
- Spring Boot
- DeferredImportSelector
Archives
- Today
- Total
목록@EnableWebMvc (1)
du.study기록공간

이번에는 @EnableWebMvc에 대해서 기록해 놓으려고 합니다. @EnableWebMvc를 살펴보면 다음과 같이 선언이 되어있습니다. @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Documented @Import(DelegatingWebMvcConfiguration.class) public @interface EnableWebMvc { } @Import(DelegatingWebMvcConfiguration.class)해당 부분을 Import하게 되는데 해당 클레스와 그 속에서 상속하는 WebMvcConfigurationSupport를 보면 MVC에서 필요한 기본적인 세팅을 해주거나, 웹 관련 설정을 커스터마이징 할 수 있도록 기능을 ..
스프링
2019. 11. 8. 23:04