springboot模版thymeleaf+freemarker
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";
}
}
瀏覽器顯示結果
相關文章
- 函式模版和類模版函式
- 模版
- 開源 SpringBoot+vueJs 前後端管理系統模版Spring BootVueJS後端
- 理解模版
- KMP模版KMP
- 模版方法模式模式
- 【模版】線段樹
- SPFA && dijkstra 模版
- HTML郵件模版分享HTML
- 模版方法設計模式設計模式
- 小程式 模版訊息
- 前端快速開發模版前端
- 搭建flutter框架模版常用Flutter框架
- ACM演算法模版ACM演算法
- 設計模式——模版方法模式設計模式
- CI 框架整合 Smarty 模版引擎框架
- 資料庫巡檢模版資料庫
- 從例子看C++模版C++
- joomla 元件、模版下載地址OOM元件
- 必備知識點 模版
- nodejs express框架一個工程中同時使用ejs模版和jade模版NodeJSExpress框架
- 尤拉函式性質和模版函式
- 小程式 template 模版使用方法
- java Freemarker 模版引擎工具類Java
- 模版匹配定位跟蹤原始碼原始碼
- Laravel 文件閱讀:Blade 模版Laravel
- 使用AppCompat專案模版APP
- check_nginxpnp4nagios模版NginxiOS
- apose 根據excel 匯出模版Excel
- Twig模版語言入門
- 招標檔案模版及要素
- android studio模版功能簡介Android
- Go模版檔案修改標示符Go
- Django form在模版中的渲染方式DjangoORM
- AngularJS 4(二)【模版語法,元件】AngularJS元件
- 【教程】(Angular)模版引用變數的魔法Angular變數
- XCode 建立自定義檔案模版XCode
- Laravel Blade 動態模版 & View::firstLaravelView