package org.springframework.issues; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @ComponentScan @EnableWebMvc @Configuration public class WebConfig extends WebMvcConfigurerAdapter { }