Thymeleaf 是一个用于渲染 HTML 页面的模板引擎,它可以通过模板语法在 HTML 中嵌入数据。
要在 Thymeleaf 中赋值给一个变量,你需要在控制器中定义该变量,然后将其传递到 Thymeleaf 模板。
例如,在控制器中:
@Controller
public class MyController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "home";
在 Thymeleaf 模板中:
<p th:text="${message}"></p>
这样,当浏览器请求首页时,将显示字符串 "Hello, Thymeleaf!"。