springboot添加文件虚拟路径(指定本地磁盘存放附件)

所有开发项目中,把附件存放于项目目录下,日后运维工作简直要人命.

所以使用虚拟路径就能很好的解决本问题:

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
 * 新增静态资源路径,与默认不冲突,解决图片需要虚拟路径问题
 * @author chencf
 *
 */
@Configuration
public class MyWebAppConfigurer 
        extends WebMvcConfigurerAdapter {
	
	//注意!!!配置磁盘路径在启动时必须创建文件夹,如D盘下必须有imag文件夹下.否则启动会报错.
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
		/*addResourceHandler("/imag/**")指定访问路径,
		*比如系统访问地址为localhost:8088,那我们请求路径为localhost:8088/imag/test.img
		*addResourceLocations("file:D:/imag/")指定本地磁盘路径(可设置挂载磁盘或局域网共享磁盘)
		*本次示例中D:/imag/test.img
		*/
        registry.addResourceHandler("/imag/**").addResourceLocations("file:D:/imag/");
        super.addResourceHandlers(registry);
    }

}

 

你可能感兴趣的:(Java,springboot)