package com.artfess.yhxt.conf; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration public class WebConfig extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/export-file/**").addResourceLocations("file:./download/"); // registry.addResourceHandler("/static/export-file/**").addResourceLocations("file:E:/develop/project/workspace/yhxt/download/"); // registry.addResourceHandler("/static/export-file/**").addResourceLocations("file:E:/pd/"); } }