SpringBoot启动后访问不到静态资源 项目启动后,发现加载jQuery等一些静态资源无法正常访问 解决办法 通过把springboot中访问静态资源的路径映射到自己的 static 目录下 spring: # xxxxxxxxx # xxxxxxx # xxxxxx # xxxxxxxxxxx # 以上省略无数字 mvc: static-path-pattern: /static/** resources: static-locations: classpath:/static/ 我的目录结构如下图: