package org.pqh.config; import org.pqh.core.annotation.ConfigurationSelector; import org.springframework.context.annotation.*; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.ViewResolverRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** * Created by reborn on 2017/7/28. */ @Configuration @EnableWebMvc @EnableAspectJAutoProxy @PropertySource("classpath:config.properties") @ComponentScan({"${spring.scan:org.pqh.controller}"}) @Import({ConfigurationSelector.class}) public class SpringConfig extends WebMvcConfigurerAdapter{ @Override public void configureViewResolvers(ViewResolverRegistry registry) { registry.jsp("/WEB-INF/jsp/",".jsp"); } }