常用的SpringBoot2.x模板引擎和官方推荐案例

常用的SpringBoot2.x模板引擎

        模板引擎(这里特指用于Web开发的模板引擎)是为了使用户界面与业务数据(内容)分离而产生的,它可以生成特定格式的文档,用于网站的模板引擎就会生成一个标准的HTML文档。

         1、JSP(后端渲染,消耗性能)
            Java Server Pages 动态网页技术,由应用服务器中的JSP引擎来编译和执行,再将生成的整个页面返回给客户端
            可以写java代码
            持表达式语言(el、jstl)
            内建函数
            JSP->Servlet(占用JVM内存)permSize
            javaweb官方推荐
            springboot不推荐 https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#boot-features-jsp-limitations

        2、Freemarker
            FreeMarker Template Language(FTL)  文件一般保存为 xxx.ftl
            严格依赖MVC模式,不依赖Servlet容器(不占用JVM内存)
            内建函数

        3、Thymeleaf (主推)
            轻量级的模板引擎(负责逻辑业务的不推荐,解析DOM或者XML会占用多的内存)
            可以直接在浏览器中打开且正确显示模板页面

            直接是html结尾,直接编辑
            xdlcass.net/user/userinfo.html
            社会工程学
                伪装

官方推荐案例

SpringBoot2.x整合模板引擎freemarker实战

    1、Freemarker相关maven依赖
        
       
            org.springframework.boot
            spring-boot-starter-freemarker
       

    2、Freemarker基础配置
        # 是否开启thymeleaf缓存,本地为false,生产建议为true
        spring.freemarker.cache=false

        spring.freemarker.charset=UTF-8
        spring.freemarker.allow-request-override=false
        spring.freemarker.check-template-location=true
        
        #类型
        spring.freemarker.content-type=text/html

        spring.freemarker.expose-request-attributes=true
        spring.freemarker.expose-session-attributes=true
        
        #文件后缀
        spring.freemarker.suffix=.ftl
        #路径
        spring.freemarker.template-loader-path=classpath:/templates/      

    3、建立文件夹
        1)src/main/resources/templates/fm/user/
        2)建立一个index.ftl
        3)user文件夹下面建立一个user.html




  
  Title


${settings.name}

${settings.domain}

    4、简单测试代码编写和访问

package net.xdclass.demo.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/freemaker") //前缀名称
public class FreemakerController {


    @GetMapping("hello")  //http://localhost:8080/freemaker/hello
    public String index(ModelMap modelMap){
        return "fm/index";    //不用加后缀,在配置文件里面已经指定了后缀
    }
}


SpringBoot2.x整合模板引擎thymeleaf实战

    官网地址:https://www.thymeleaf.org/doc/articles/thymeleaf3migration.html
    1、thymeleaf相关maven依赖
            
                   org.springframework.boot
                   spring-boot-starter-thymeleaf
            

    2、thymeleaf基础配置

        #开发时关闭缓存,不然没法看到实时页面
        spring.thymeleaf.cache=false
        spring.thymeleaf.mode=HTML5
        #前缀
        spring.thymeleaf.prefix=classpath:/templates/
        #编码
        spring.thymeleaf.encoding=UTF-8
        #类型
        spring.thymeleaf.content-type=text/html
        #名称的后缀
        spring.thymeleaf.suffix=.html

    3、建立文件夹
        1)src/main/resources/templates/tl/
        2)建立一个index.html




    模板引擎thymeleaf取值



测试:

测试内容

xdclass.net

    4、简单测试代码编写和访问
        注意:$表达式只能写在th标签内部
        快速入门:https://www.thymeleaf.org/doc/articles/standarddialect5minutes.html

 

 

 

你可能感兴趣的:(java,WebFrame)