springboot 学习 springboot静态资源路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 学习 springboot静态资源路径相关的知识,希望对你有一定的参考价值。
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
以上是关于springboot 学习 springboot静态资源路径的主要内容,如果未能解决你的问题,请参考以下文章