@Configuration
-
스프링 환경에서 웹 애플리케이션 설정 메커니즘 정리스터디 노트 2023. 11. 1. 14:52
웹 애플리케이션의 설정 메커니즘에 대해 스터디해보도록 하겠습니다. 다음은 @EnableWebMvc와 DelegatingWebMvcConfiguration 클래스의 일부분입니다. // EnableWebMvc Annotation interface @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) @Documented @Import({DelegatingWebMvcConfiguration.class}) public @interface EnableWebMvc { } // DelegatingWebMvcConfiguration class public class DelegatingWebMvcConfiguration extends WebMvcConfigur..