spring boot web 설정 참고

공지사항2021. 5. 18. 21:31


@EnableWebMvc와 WebMvcConfigurerAdapter를 사용하는 순간
더이상 SpringBoot가 아니고 Spring이라함

@EnableWebMvc를 활성화 하면 일반 Spring MVC 모드가 되어 Auto Configuration이 안먹게 된다.
이 경우 WebMvcConfigurationSupport Bean이 등록되는데 이 Bean이 존재하면 Auto Configuration 이 중단된다.
즉, SpringBoot 에서는 org.springframework.boot:spring-boot-starter-web 의존성이 걸려있다면 @EnableWebMvc를 설정하지 말라.


https://kwonnam.pe.kr/wiki/springframework/springboot/mvc