@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
'spring-boot' 카테고리의 다른 글
생성자 주입 권장 (0) | 2021.08.18 |
---|---|
spring-boot 2.4 변경사항 (0) | 2021.07.25 |
Springboot devtools hot deployment Mybatis error: Could not load [mapper /] (0) | 2021.03.20 |
Reached the maximum number of URI tags for 'http.client.requests' (0) | 2020.11.18 |
XssFilter & lucy-xssFilter 적용 (0) | 2020.10.04 |