yml配置之static-path-pattern 与 static-locations,静态资源的访问

spring:
mvc:
# “spring.mvc.static-path-pattern”用于阐述HTTP请求地址,请求非controller地址,如js,css,img等访问路径需要加上static,
# 可以不配置也能访问图片

# 而“spring.resources.static-locations”则用于描述静态资源的存放位置。多个路径(逗号隔开)中依次查找是否存在
static-path-pattern: /static/**
resources:
static-locations: classpath:/static/,file:D:\
下面是一个访问本地图片的例子:

方框1:url中访问路径,这里为:localhost:8080/static/...

方框2:本地图片保存的路径,image会根据d:\和浏览器中输入的图片名字自动查找图片

  

 

还有一种 访问本地服务器上的tomcat 映射方法:

<Context path="/user_images" docBase="C:assetsfileuser_images"  reloadable="true"></Context> 
源码,是痛苦的,又是快乐的,如果没有这痛苦,也就没有了这快乐!
原文地址:https://www.cnblogs.com/erlongxizhu-03/p/12051794.html