注意:默认配置的/**映射到/static(或/public ,/resources,/META-INF/resources)
当请求/index.html的时候,Spring MVC 会在/static/目录下面找到。
所以如果访问http://localhost:8080/static/index.html,那么上面配置的几个目录下面都没有/static目录,因此会找不到资源文件!
所以写静态资源位置的时候,不要带上映射的目录名(如/static/,/public/ ,/resources/,/META-INF/resources/)!
优先级顺序为:META/resources > resources > static > public