Spring2.x版本之后,默认静态资源路径无法
1、“classpath:/META-INF/resources/” 需要手动创建
2、“classpath:/resources/” 需要手动创建
3、“classpath:/static/”
4、“classpath:/public/” 需要手动创建
以上四个都已经失效(如图)
可以在配置文件中
自定义静态资源路径:
spring.mvc.static-path-pattern=static/**
之后就可以访问成功(如图):