springboot模版thymeleaf+freemarker

╰煙消雲散發表於2020-11-29

thymeleaf模板

thymeleaf模板和freemarker模板都一套可以替代JSP開發的一套引擎模板,它可以生成靜態頁面,關於Thymeleaf的優點,我只說一條:它就是html頁面。

專案層級結構
在這裡插入圖片描述

pom依賴:

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

官方建議在開發時將快取關閉,那就在application.yml檔案中加入下面這行(正式環境還是要將快取開啟的)

spring:
  thymeleaf:
    cache: false

對應的後臺程式碼:

package com.liyingdong.springboot01.entity;

import lombok.Data;

/**
 * @author 李瀛東
 * @site www.xiaomage.com
 * @company xxx公司
 * @create  2020-11-27 9:42
 */
@Data
public class User {

    private  Integer uid;
    private  String uname;
    private  String pwd;

    public User(Integer uid, String uname, String pwd) {
        this.uid = uid;
        this.uname = uname;
        this.pwd = pwd;
    }

    public User() {
    }

    @Override
    public String toString() {
        return "User{" +
                "uid=" + uid +
                ", uname='" + uname + '\'' +
                ", pwd='" + pwd + '\'' +
                '}';
    }
}

UserController

package com.liyingdong.springboot01.controller;

import com.liyingdong.springboot01.entity.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.servlet.http.HttpServletRequest;
import java.util.ArrayList;
import java.util.List;

/**
 * @author 李瀛東
 * @site www.xiaomage.com
 * @company xxx公司
 * @create  2020-11-27 9:45
 */
@Controller
@RequestMapping("/thymeleaf")
public class UserController {
    @RequestMapping("/list")
    public  String hello(HttpServletRequest request){
        /**
         * 1、獲取單個值
         * 2、能夠在html頁面進行遍歷展示
         * 3、如何在html頁面轉義html程式碼塊
         * */
        request.setAttribute("msg","傳輸單個字串");
        List<User> userList=new ArrayList<>();
        userList.add(new User(1,"zs","123"));
        userList.add(new User(2,"ls","234"));
        userList.add(new User(3,"ww","567"));
        request.setAttribute("userList",userList);
        request.setAttribute("htmlStr","<span style='color:red'>html程式碼塊</span>");
        return  "list";
    }
}

前臺HTML頁面

必須在html中新增庫(編碼提示用)

<html xmlns:th="http://www.thymeleaf.org">

thymeleaf中替代jsp:include的寫法

兩種情況

一種是應用一段html程式碼,和引用一部分程式碼

common.html

<div th:fragment="h1">包含公共模組一</div>
<div th:fragment="h2">包含公共模組二</div>
<div th:fragment="h3">包含公共模組三</div>

list.html

<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>thymeleaf模版知識點介紹</title>
</head>
<body>
<div th:replace="common :: h1"></div>
<div th:text="${msg}"></div>

<table width="60%" border="1">
    <tr>
        <td>id</td>
        <td>使用者名稱</td>
        <td>密碼</td>
    </tr>
    <tr th:each="u:${userList}">
        <td th:text="${u.uid}"></td>
        <td th:text="${u.uname}"></td>
        <td th:text="${u.pwd}"></td>
    </tr>
</table>
<div th:utext="${htmlStr}"></div>

<div th:utext="${htmlStr}"></div>
<h3>包含頁面所有內容</h3>
<div th:include="common.html"></div>
<h3>包含頁面指定內容</h3>
<div th:replace="common :: h3"></div>
</body>
</html>

頁面效果

在這裡插入圖片描述
注意:

1、這裡的th:replace裡的路徑是相對於templetes資料夾的。
2、冒號冒號前後都有空格,我沒注意這一點踩了大坑

Freemarker模板

學習網站:http://freemarker.foofun.cn/

匯入pom依賴

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-freemarker</artifactId>
   </dependency>

<!--可以不加,但是做專案的時候可能會用-->
 <resources>
            <!--解決mybatis-generator-maven-plugin執行時沒有將XxxMapper.xml檔案放入target資料夾的問題-->
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <!--freemarker模板也讀取需要註釋標紅地方-->
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <!--<include>*.properties</include>-->
                    <!--<include>*.xml</include>-->
                    <!--<include>*.yml</include>-->
                </includes>
            </resource>
        </resources>

application.yml檔案的預設配置

注意縮排的問題

spring:
  thymeleaf:
    cache: false
  freemarker:
    # 設定模板字尾名
    suffix: .ftl
    # 設定文件型別
    content-type: text/html
    # 設定頁面編碼格式
    charset: UTF-8
    # 設定頁面快取
    cache: false
    # 設定ftl檔案路徑,預設是/templates,為演示效果新增role
    template-loader-path: classpath:/templates/freemarker
    mvc:
      static-path-pattern: /static/**

建立ftl字尾模版

在這裡插入圖片描述
list.ftl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title>$Title$</title>
</head>
<body>
<h2>取值</h2>
<h3>提供預設值</h3>
welcome 【${name!'未知'}】 to freemarker!

<h3>exists用在邏輯判斷</h3>
<#if name?exists>
    ${name}
</#if>

<h2>條件</h2>
<#if sex=='girl'>
    女
<#elseif sex=='boy'>
    男
<#else>
    保密
</#if>

<h2>迴圈</h2>
<table border="1px" width="600px">
    <thead>
    <tr>
        <td>ID</td>
        <td>角色名</td>
        <td>描述</td>
    </tr>
    </thead>
    <tbody>
    <#list roles as role>
        <tr>
            <td>${role.rid}</td>
            <td>${role.roleName}</td>
            <td>${role.desc}</td>
        </tr>
    </#list>
    </tbody>
</table>

<h2>include</h2>
<#include 'foot.ftl'>

<h2>區域性變數(assign)/全域性變數(global)</h2>
<#assign ctx1>
    ${springMacroRequestContext.contextPath}
</#assign>

<#global ctx2>
    ${springMacroRequestContext.contextPath}
</#global>

${ctx1}和${ctx2}
ssm
</body>
</html>

foot.ftl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title>$Title$</title>
</head>
<body>
版權資訊
</body>
</html>

相關controler層的Java程式碼

package com.liyingdong.springboot01.controller;

import com.liyingdong.springboot01.entity.Role;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import java.util.ArrayList;
import java.util.List;

/**
 * @author 李瀛東
 * @site www.xiaomage.com
 * @company xxx公司
 * @create  2020-11-27 14:30
 */
@Controller
@RequestMapping("/freemarker")
public class RoleController {
    @RequestMapping("/role/list")
    public ModelAndView roleList(){
        ModelAndView mav = new ModelAndView();
        mav.setViewName("/list");

        mav.addObject("name",null);
        mav.addObject("sex","gay");
        List list = new ArrayList();
        list.add(new Role(1,"老師","教書育人"));
        list.add(new Role(2,"學生","知識改變命運"));
        mav.addObject("roles",list);

        return mav;
    }

    @RequestMapping("toLogin")
    public String toLogin(){
        return "login";
    }
}

瀏覽器顯示結果

在這裡插入圖片描述

相關文章