springboot默认配置基本上可以满足我们的日常需要
所以此时就需要自定义配置springboot的项目静态文件映射
映射 /** 到
classpath:/static classpath:/public classpath:/resources classpath:/META-INF/resources
到本地文件路径也就是 resource/static/ 下面
访问时可以:
localhost:8080/+资源路径+资源名
例如我的项目结构!
此时我访问的静态资源为:
localhost:8080/js/jquery.min.js
如果配置 jquery.min.js 直接在static下面 访问则是
localhost:8080/jquery.min.js
但现在需要自定义映射规则:
#配置内部访问地址和外部图片访问地址 /myimgs/** spring.mvc.static-path-pattern=/** spring.resources.static-locations=file:C:/Users/tizzy/Desktop/img/,classpath:/static/
映射 /** 到 本地磁盘路径下存放的图片,和tomcat中的图片路径
访问路径则是
localhost:8080/jquery.min.js localhost:8080/ 图片名
@Configuration public class WebMvcConfiguration extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //addResourceHandler是指你想在url请求的路径 //addResourceLocations是图片存放的真实路径 registry.addResourceHandler("/**").addResourceLocations("file:C:/Users/tizzy/Desktop/img/").addResourceLocations("classpath:/static/"); super.addResourceHandlers(registry); } }