Spring Boot
Spring boot에서 WebMvcConfigurerAdapter 노란 밑줄 일때
dev.mk
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.SpringBootServletInitializer;
3. JPA method findOne -> findById or getOne
ID를 가지고 Domain을 가져오는 method로 findOne을 썻다면
getOne 또는 findById로 변경.
주의할점 : findById는 return값을 Optional<T>로 리턴.
반응형