SpringBoot--首页和图标定制

Posted Z && Y

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot--首页和图标定制相关的知识,希望对你有一定的参考价值。

1. SpringBoot--首页和图标定制

要想搞清楚原理的请看 静态资源导入


1.1 首页定制

在SpringBoot的核心自动装配类(WebMvcAutoConfiguration.java ):我们可以发现
在这里插入图片描述

"classpath:/META-INF/resources/"
"classpath:/resources/"
"classpath:/static/"
"classpath:/public/"

优先级 META-INF/resources > resources > static(默认) > public

这些路径的根目录的index.html会被当成首页


1.2 图标定制

把favicon.ico放在以下目录,会自动转换成网站的图标

"classpath:/META-INF/resources/"
"classpath:/resources/"
"classpath:/static/"
"classpath:/public/"

优先级 META-INF/resources > resources > static(默认) > public


1.3 首页和图标定制具体案例

在这里插入图片描述

我在static下面放了 favicon.ico
在这里插入图片描述

在META-INF/resources下面放了 index.html
在这里插入图片描述

!!!请注意,只能是上面提及的这些文件夹下面

运行效果:

在这里插入图片描述



以上是关于SpringBoot--首页和图标定制的主要内容,如果未能解决你的问题,请参考以下文章

springboot首頁定制

B站学习springboot笔记

Sublime Text自定制代码片段(Code Snippets)

SpringBoot开发网站

如何制作网站ico小图标

2 分钟定制一个高大上的 GitHub 首页