반응형
WebMvcConfigurerAdapter
-
Spring boot에서 WebMvcConfigurerAdapter 노란 밑줄 일때Spring Boot 2019. 4. 6. 21:38
springboot 1.5에서 springboot 2.0 으로 바뀌면서 몇가지 패키지명이랑 상속방법이 변경되었다. 1. 상속방법이 바뀜 WebMvcConfigurerAdapter deprecated public class Application extends WebMvcConfigurerAdapter -> public class Application implements WebMvcConfigurer 2. SpringBootServletInitializer 패키지 이름이 바뀜 import org.springframework.boot.web.support.SpringBootServletInitializer; -> import org.springframework.boot.web.servlet.support.Sp..