Spring Boot中的模板引擎选择与配置
在Spring Boot中,你可以选择多种模板引擎,如Thymeleaf、FreeMarker、Mustache等。以下是一个使用Thymeleaf的配置示例:
- 在
pom.xml
中添加Thymeleaf依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 在
application.properties
或application.yml
中配置Thymeleaf模板引擎设置(可选):
# application.properties 示例
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
或者使用YAML格式:
# application.yml 示例
spring:
thymeleaf:
prefix: classpath:/templates/
suffix: .html
mode: HTML5
encoding: UTF-8
content-type: text/html
- 创建一个Controller来使用Thymeleaf模板:
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class MyController {
@GetMapping("/greeting")
public String greeting(Model model) {
model.addAttribute("name", "World");
return "greeting"; // 对应src/main/resources/templates/greeting.html
}
}
- 在
src/main/resources/templates
目录下创建一个名为greeting.html
的Thymeleaf模板文件:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Greeting</title>
</head>
<body>
<h1 th:text="'Hello, ' + ${name} + '!'">Hello, World!</h1>
</body>
</html>
以上示例展示了如何在Spring Boot项目中集成Thymeleaf模板引擎,并通过一个简单的Controller返回渲染后的视图。
评论已关闭