package spring; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration @ComponentScan({"web.controller","web.service"}) public class SpringConfig implements WebMvcConfigurer { }