1.所有 /webjars/** ,都去 classpath:/META-INF/resources/webjars/ 找资源;
webjars
:以
jar
包的方式引入静态资源
localhost:8080/webjars/jquery/3.3.1/jquery.js
http://www.webjars.org/
2."/**" 访问当前项目的任何资源,都去(静态资源的文件夹)找映射
"classpath:/META‐INF/resources/",
"classpath:/resources/",
"classpath:/static/",
"classpath:/public/"
3.欢迎页; 静态资源文件夹下的所有index.html页面;被"/**"映射;
localhost:8080/
找
index
页面