Spring Boot web开发之视图解析与模板引擎(尚硅谷笔记)
在Spring Boot中,我们可以使用不同的模板引擎来渲染视图,比如Thymeleaf、FreeMarker、Mustache等。以下是一个使用Thymeleaf模板引擎的例子:
- 首先,在
pom.xml
中添加Thymeleaf依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 在
src/main/resources/templates
目录下创建一个Thymeleaf模板文件greeting.html
:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Greeting</title>
</head>
<body>
<h1 th:text="'Hello, ' + ${name} + '!'"></h1>
</body>
</html>
- 创建一个Controller来渲染这个模板:
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class GreetingController {
@GetMapping("/greeting")
public String greeting(@RequestParam(name="name", required=false, defaultValue="World") String name, Model model) {
model.addAttribute("name", name);
return "greeting";
}
}
当你访问/greeting
路径时,Spring Boot会使用Thymeleaf渲染greeting.html
模板,并将其中的${name}
替换为传递给greeting
方法的参数。
评论已关闭