码迷,mamicode.com
首页 > 其他好文 > 详细

11.模板引擎

时间:2020-02-13 14:53:24      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ping   imp   页面   char   doc   work   文件   city   start   

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.模板引擎

标签:ping   imp   页面   char   doc   work   文件   city   start   

原文地址:https://www.cnblogs.com/yangyh26/p/12303329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!