在Spring Boot中使用Thymeleaf将值传递给HTML模板的变量,可以按照以下步骤进行操作:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
# 设置Thymeleaf模板文件的位置,默认为classpath:/templates/
spring.thymeleaf.prefix=classpath:/templates/
# 设置Thymeleaf模板文件的后缀,默认为.html
spring.thymeleaf.suffix=.html
# 开启Thymeleaf的缓存,默认为true
spring.thymeleaf.cache=true
Model
对象将数据传递给HTML模板的变量。例如:@Controller
public class MyController {
@GetMapping("/hello")
public String hello(Model model) {
String message = "Hello, Thymeleaf!";
model.addAttribute("message", message);
return "hello";
}
}
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
在上述代码中,th:text="${message}"
表示将message
变量的值显示在<h1>
标签中。
推荐的腾讯云相关产品:腾讯云服务器(CVM)、腾讯云数据库MySQL版、腾讯云对象存储(COS)等。
腾讯云产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云