SpringBoot路径映射配置

SpringBoot路径映射配置

SpringBoot项目中,只有位于static中的资源可以直接被访问

(访问方式:http://主机:端口/资源名)

其他资源无法被直接访问

这时就需要进行路径映射配置

可以创建一个配置类,对其进行配置

// An highlighted block
@Configuration
public class WebMVCConfig extends WebMvcConfigurationSupport {

    // 路径映射配置
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {

        // 将网页地址栏中的 /order/**  映射到  工程类路径下的 /order/ 中,以访问resources/order中的资源
        registry.addResourceHandler("/order/**").addResourceLocations("classpath:/order/");
        // 磁盘目录
        String path = "E:\\xxx\\xxx\\";   
        // 将网页地址栏中的 /image/**  映射到  磁盘的某个目录下,以访问磁盘资源 
        registry.addResourceHandler("/image/**").addResourceLocations("file:" + path);
     
    }

}

如此,便实现了SpringBoot的资源路径映射配置。

你可能感兴趣的:(spring,boot,java)