현재 세 번째 프로젝트를 진행하고 있다.스프링부트를 이용한 프로젝트인데, 필요한 설정 파일에 대해서 정리해보려고 한다. 1. CustomServletConfigimport org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.EnableWebMvc;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;@Configuration@EnableWeb..