赞
踩
<!-- 模板引擎-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
在这里插入图片描述
可以在阿里巴巴矢量图标库里找到你想要的图标
之后把图标名称改为
favicon.ico
注意: 之后放置在static目录下(这样就可以通过SpringBoot的默认配置读取到)
名称要必须要为favicon.ico
该原型非原创,侵权请联系
运行之后会有找不到资源的问题
新增config目录
增加WebConfig配置
package com.aze.blog.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * @author :Aze * @description:拓展SpringMvc的配置 * @date :Created in 2019/10/25 11:36 * @modified By: * @version: */ @Configuration public class WebMvcConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/index").setViewName("index"); } @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
这样就完成了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。