You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
webcrawler/web/src/main/java/org/pqh/config/SpringConfig.java

31 lines
1.0 KiB

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.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* Created by reborn on 2017/7/28.
*/
@Configuration
@EnableWebMvc
@EnableAspectJAutoProxy
@PropertySource("classpath:config.properties")
@ComponentScan({"${spring.scan:org.pqh.controller}"})
@Import({ConfigurationSelector.class})
//@Import(WebCrawlerConfig.class)
public class SpringConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
registry.jsp("/WEB-INF/jsp/",".jsp");
}
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/image/**").addResourceLocations("/");
}
}