springboot中静态资源的存放位置在以下几个路径中:
"classpath:/META-INF/resources/"
"classpath:/resources/"
"classpath:/static/"
"classpath:/public/"
同时我们也可以自定义静态资源:
application.properties配置文件修改:
spring.resources.static-locations=classpath:/coding/,classpath:/kuang/
首页资源路径:
在以上的静态资源路径下的index.xml文件
网站图标设置:
与其他静态资源一样,Spring Boot在配置的静态内容位置中查找 favicon.ico。如果存在这样的文件,它将自动用作应用程序的favicon
但要在application.properties配置文件中:
#关闭默认图标 spring.mvc.favicon.enabled=false