后端服务启动后,未设置路径映射时,通过浏览器仅能访问项目路径下的资源文件。若想访问服务器其他磁盘的文件则需要做磁盘映射,具体使用方法如下:
1、具体实现
增加以下配置类,实现WebMvcConfigurer类。
package com.aikes.util;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.io.File;
/**
* 访问地址:http://127.0.0.1:8099/mcpc/static/2022/0916/1663316863700.jpg
* 通过/static 切割
* 磁盘路径:E:/MCPC/2022/0916/1663316863700.jpg
*/
@Configuration
public class WebAppConfig implements WebMvcConfigurer {
@Value("${filePath}")
private String filePath="E:/MCPC";
//映射浏览器可以直接访问的本地路径
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
if (!filePath.endsWith(File.separator)) {
filePath = filePath + File.separator;
}
registry.addResourceHandler("/static/**").addResourceLocations("file:" + filePath);
}
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOriginPatterns("*")
.allowCredentials(true)
.allowedMethods("GET", "POST").allowedHeaders("*").maxAge(3600 * 24);
WebMvcConfigurer.super.addCorsMappings(registry);
}
}
根路径filePath可在配置文件增加配置,方便修改,其代表资源文件的父类根目录,即:若资源文件完整路径为:E:/MCPC/2022/photo.jpg,则此处需要将filePath配置为:E:/MCPC。
访问过程通过切割 /static 将请求后的相对路径与上述根路径进行拼接,用于获取真实磁盘文件,即:若访问请求为:http://127.0.0.1:8099/mcpc/static/2022/0916/1663316863700.jpg,最终拼接后的磁盘路径为:E:/MCPC/2022/0916/1663316863700.jpg。
至此浏览器输入上述网址就可以成功访问到后端指定目录的图片等资源文件。