11.模板引擎
Posted yangyh26
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11.模板引擎相关的知识,希望对你有一定的参考价值。
1.模板引擎的分类
JSP、Velocity、Freemarker、Thymeleaf(SpringBoot推荐)
2.模板引擎的功能
3.thymeleaf的使用
3.1.thymeleaf的引入
<properties>
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
<thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version>
</properties>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
3.2.html文件的存放路径
只要我们把HTML页面放在classpath:/templates/,thymeleaf就能自动渲染。
package com.atguigu.springboot.com.atguigu.springboot.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HelloController {
@RequestMapping("/hello")
public String success(){
return "success";//classpath:/templates/success.html
}
}
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>成功!</h1> </body> </html>
以上是关于11.模板引擎的主要内容,如果未能解决你的问题,请参考以下文章