SpringBoot模板引擎簡單認知
SpringBoot模板引擎簡單認知
thymeleaf模板
關於Thymeleaf的優點,我只說一條:它就是html頁面。下面直接上程式碼
新增pom.xml相關依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starterthymeleaf</artifactId>
</dependency>
Spring Boot官方文件建議在開發時將快取關閉,那就在application.properties檔案中加入下面這行
spring.thymeleaf.cache=false
正式環境還是要將快取開啟的
後臺程式碼塊
實體類
package com.tanle.springboot01.entity;
import lombok.Data;
/**
* @author tanle
* @site www.tanle.com
* @company xxx公司
* @create 2020-11-27 16:14
*/
@Data
public class User {
private Integer uid;
private String uname;
private String pwd;
public User() {
}
public User(Integer uid, String uname, String pwd) {
this.uid = uid;
this.uname = uname;
this.pwd = pwd;
}
}
conroller層
package com.tanle.springboot01.controller;
import com.tanle.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 tanle
* @site www.tanle.com
* @company xxx公司
* @create 2020-11-27 16:16
*/
@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<User>();
userList.add(new User(1,"zs","123"));
userList.add(new User(2,"ls","234"));
userList.add(new User(3,"ww","345"));
request.setAttribute("userList",userList);
request.setAttribute("htmlStr","<span style='color:red'>轉義html程式碼塊</span>");
return "list";
}
}
前臺程式碼塊
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>thymeleaf模板介紹</title>
</head>
<body>
<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>
</body>
</html>
瀏覽器執行結果
單個值的傳遞
表格資料的遍歷
轉義程式碼塊
Freemarker模板
新增pom.xml檔案
<!--可以不加,但是做專案的時候可能會用-->
<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/**
實體類
package com.tanle.springboot01.entity;
import lombok.Data;
/**
* @author tanle
* @site www.tanle.com
* @company xxx公司
* @create 2020-11-27 16:49
*/
@Data
public class Role {
private Integer rid;
private String roleName;
private String desc;
public Role() {
}
public Role(Integer rid, String roleName, String desc) {
this.rid = rid;
this.roleName = roleName;
this.desc = desc;
}
}
Freemarker模板的字尾是ftl
可以提前設定
新建list.ftl頁面程式碼
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>freemarker模板介紹</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}
</body>
</html>
foot.ftl
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>$Title$</title>
</head>
<body>
底部頁面
</body>
</html>
RoleController
package com.tanle.springboot01.controller;
import com.tanle.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 tanle
* @site www.tanle.com
* @company xxx公司
* @create 2020-11-27 16:47
*/
@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";
}
}
瀏覽器執行結果
1、application.yml中可以配置模板存放位置的根路徑、以及靜態資原始檔存放位置的根路徑
2、${springMacroRequestContext.contextPath}:SpringBoot中獲取專案名
3、不推薦使用全域性變數。即便它們屬於不同的名稱空間, 全域性變數也被所有模板共享,因為它們是被 import進來的。
4、freemarker模板也可以像jsp那樣設定根路徑
thymeleaf中替代jsp:include的寫法
包含整個html頁面
引用其中一段
注意:
1、這裡的th:replace裡的路徑是相對於templetes資料夾的。
2、冒號冒號前後都有空格,我沒注意這一點踩了大坑
相關文章
- javascript簡單模板引擎介紹JavaScript
- SpringBoot--- Shiro(攔截,認證)、Thymeleaf(模板引擎)Spring Boot
- EasyTpl - 簡單快速的 PHP 模板引擎PHP
- 實現一個簡單的模板引擎
- 簡單認識MySQL儲存引擎MySql儲存引擎
- 編寫一個簡單的JavaScript模板引擎JavaScript
- 前端資料渲染及mustache模板引擎的簡單實現前端
- KOA的簡易模板引擎實現方式
- Django 模板引擎以及模板Django
- vue簡單模板語法Vue
- Springboot的securiity簡單記憶體身份認證失敗Spring Boot記憶體
- JS模板引擎JS
- 對於記憶體洩漏問題的簡單認知記憶體
- SpringBoot簡單梳理Spring Boot
- SpringBoot簡單DemoSpring Boot
- javascript的簡單模板替換JavaScript
- 【模板】樹分塊(簡單版)
- Thymeleaf(Java模板引擎)Java
- Python 模板引擎Python
- PHP模板引擎simplePhpTmpPHP
- JavaScript 模板引擎概述JavaScript
- 模板引擎使用詳解:包含公共模板
- 手擼 JavaScript 模板引擎JavaScript
- PHPTAL模板引擎語法PHP
- Express 文件(使用模板引擎)Express
- ejs模板引擎原理JS
- java模板引擎:velocityJava
- JavaScript模板引擎綜述JavaScript
- SpringBoot就是這麼簡單Spring Boot
- springboot簡單的專案Spring Boot
- 實現最簡單的模板替換
- vue+sortablejs的簡單使用模板VueJS
- smarty模板引擎視訊教程
- Java模板引擎之FreeMarkerJava
- Python 模板引擎比較Python
- 13.14 SpringBoot整合JSP模板引擎:JSP頁面樣式亂掉Spring BootJS
- Linux簡單知識點Linux
- SpringBoot簡單打包部署(附工程)Spring Boot