首先我们先说一下模板引擎
模板引擎
JSP、Velocity、Freemarker、Thymeleaf等
其中SpringBoot推荐的模板引擎为Thymeleaf;
语法更简单,功能更强大
我们在pom文件中添加Thymeleaf的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
如果版本号不对怎么办呢,我们可以用properties进行修改
<properties>
<thymeleaf.version>3.0.2.REALEASE</thymeleaf.version>
<!--布局功能的支持程序 thymeleaf3主程序 layout2以上版本-->
<thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version>
</properties>
thymeleaf的使用及语法
@ConfigurationProperties(prefix = "spring.thymeleaf")
public class ThymeleafProperties {
private static final Charset DEFAULT_ENCODING = StandardCharsets.UTF_8;
public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
//只要我们把html页面放在classpath:/templates/,thymeleaf就能进行自动渲染了
我们来试一下
首先我们给controller加一个功能
@RequestMapping("/success")
public String success(){
//classpath:templates/success.html
return "success";
}
然后我们在templates下建立一个success的html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>成功!</h1>
</body>
</html>
写完html文件之后运行一下