总结一下springboot静态资源映射。就是可以用项目访问路径来访问 服务上的文件。比如我的项目路径是http://xxx:8080/demo ,我访问我磁盘中的图片路径是http://xxx:8080/demo/static/demo.jpg
package com.xnpool.common.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.ResourceUtils;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.io.File;
import java.io.FileNotFoundException;
/**
* @author heqiwen
* @version 1.0
* @since 2020/11/10
*/
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Value("${cloudwallet.systemfile.filepath}")
private String systemPath;
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
File path = null;
try {
path = new File(ResourceUtils.getURL("classpath:").getPath());
} catch (FileNotFoundException e) {
e.printStackTrace();
}
//静态文件目录
String gitPath = path.getParentFile().getParentFile().getParent() + File.separator + "static" + File.separator + "uploads" + File.separator;
String filepath=systemPath+File.separator;
registry.addResourceHandler("/static/**")//这个addResourceHandler是访问路径
.addResourceLocations("file:"+filepath)//下面的这些addResourceLocations是磁盘中文件的位置。
.addResourceLocations("classpath:META-INF/resources/")
.addResourceLocations("classpath:/resources/")
.addResourceLocations("classpath:/public/")
.addResourceLocations("classpath:/static/");
//.addResourceLocations("file:" + agreement + File.separator)
}
}
我这里systemPath是在配置文件中写的/opt/uploads目录。 目录中有一个demo.jpg的图片。
已在现成项目中运行没有问题。在此总结怕后面自己又忘了,其他人也可以看一下。