33 lines
1.0 KiB
Java
33 lines
1.0 KiB
Java
|
package com.cm.common.config;
|
||
|
|
||
|
import com.cm.common.config.properties.FileProperties;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||
|
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
|
||
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
||
|
/**
|
||
|
* @ClassName: WebConfig
|
||
|
* @Description: Web配置
|
||
|
* @Author: WangGeng
|
||
|
* @Date: 2019/3/13 9:58 AM
|
||
|
* @Version: 1.0
|
||
|
**/
|
||
|
@Configuration
|
||
|
public class WebConfig implements WebMvcConfigurer {
|
||
|
|
||
|
@Autowired
|
||
|
private FileProperties fileProperties;
|
||
|
|
||
|
@Override
|
||
|
public void addViewControllers(ViewControllerRegistry registry) {
|
||
|
registry.addViewController("/").setViewName("forward:/index");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
||
|
registry.addResourceHandler("/files/**").addResourceLocations("file:" + fileProperties.getUploadPath());
|
||
|
}
|
||
|
}
|