- 首页和图标定制
- 首页:新建index文件,放到静态资源加载目录
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>首页-测试</title>
</head>
<body>
<h1>首页</h1>
</body>
</html>
测试结果:
-
通过controller去跳到首页,而不是通过加载静态资源的方式加载首页
-
controller访问index
package com.bill.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @Auther: wangchunwen
* @Date: 2023/1/23 - 01 - 23 - 22:36
* @Description: com.bill.controller
* @version: 1.0
*/
@Controller
public class IndexController {
@RequestMapping("/index")
public String index(){
return "index";
}
}
- 导入thymeleaf依赖
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>
- 测试结果:
- 图标定制:默认每个网页图标是空的,例如下面的第一个图片,B站和微博都是有图标。
- 在public目录下准备一个图标
- 关闭默认图标
spring.mvc.favicon.enabled = false
测试结果:
标签:index,SpringBoot,controller,50,thymeleaf,首页,230123,org,图标 From: https://www.cnblogs.com/wcwblog/p/17065690.html