以简单的例子从头开始建spring boot web多模块项目-thymeleaf引擎
在Spring Boot项目中,我们可以使用Thymeleaf作为模板引擎来创建动态网页。以下是如何在Spring Boot项目中配置Thymeleaf的步骤:
- 在
pom.xml
中添加Thymeleaf依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 在
src/main/resources/application.properties
中配置Thymeleaf模板引擎设置(可选):
# 设置Thymeleaf模板的缓存设置为false,开发时关闭缓存,方便看到实时更新
spring.thymeleaf.cache=false
# 设置模板的前缀和后缀,默认为classpath:/templates/,默认不需要修改
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
# 设置模板的模式为HTML5
spring.thymeleaf.mode=HTML5
- 创建一个Controller来使用Thymeleaf渲染页面:
package com.example.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class DemoController {
@GetMapping("/")
public String index(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "index";
}
}
- 在
src/main/resources/templates
目录下创建index.html
Thymeleaf模板:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Hello Thymeleaf</title>
</head>
<body>
<h1 th:text="${message}">Hello, World!</h1>
</body>
</html>
以上步骤简要展示了如何在Spring Boot项目中集成Thymeleaf模板引擎,并创建一个简单的动态网页。在实际开发中,你可以根据需要添加更多的配置和功能。
评论已关闭