WebMvcConfigurer(3)
-
ViewController 추가
ViewController만 일괄로 추가할때 유용할 것 같음@Configurationpublic class WebMvcConfig implements WebMvcConfigurer {public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/home").setViewName("home"); registry.addViewController("/").setViewName("home"); registry.addViewController("/hello").setViewName("hello"); registry.addViewController("/login").setViewName("login")..
2024.06.13 -
Spring boot WebMvcConfigurer jsp 셋팅
'/WEB-INF/jsp/'에서 마지막에 '/'가 빠지면 인식 못함 import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewResolverRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration @ComponentScan public class WebConfig implements WebMvcConfigurer { @Override public void configureViewResolvers(ViewResolverRegis..
2021.04.05 -
WebMvcConfigurerAdapter is deprecated
Spring 5, Spring boot 2를 사용하면 발생 WebMvcConfigurer interface를 대신 사용하면 됨
2021.04.05