springboot 无法访问静态资源

springboot一般默认static为静态资源路径,所以访问静态资源时不需要加上static,想要加上static可以访问,需要在配置文件中加入

spring:
  mvc:
  static-path-pattern: /static/**
原文地址:https://www.cnblogs.com/fengwenzhee/p/15375526.html