一、创建一个springboot工程并添加web模板引擎
二、引入模板引擎需要的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
三、创建一个controller包和HelloController的类
//@RestController如果用这个则不能直接使用模板引擎
//@RestController
@Controller
public class HelloController {
//在http://localhost:8080/hello.html输入这个会直接报错
@GetMapping("/hello") //这个名字必须和HTMl的名字一样
public String hello(Map<String,Object> maps){
maps.put("success","你好!");
return "hello";//这个名字必须和HTMl的名字一样
}
}
四、创建一个hello.html的页面
<!DOCTYPE html>
<!-- xmlns:th="http://www.thymeleaf1.org" 这个的作用主要是模板提示的功能-->
<html lang="en" xmlns:th="http://www.thymeleaf1.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div th:text="${success}"></div>
<h1>成功</h1>
</body>
</html>
五、运行即可