在處理模板時,可以由模板邏輯決定是否載入數據,以提高性能。 在Spring Boot控制器中設置數據時,使用LazyContextVariable可以實現這功能。 ...
在處理模板時,可以由模板邏輯決定是否載入數據,以提高性能。
在Spring Boot控制器中設置數據時,使用LazyContextVariable可以實現這功能。
開發環境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8
新建一個名稱為demo的Spring Boot項目。
1、pom.xml
加入Thymeleaf依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
2、src/main/java/com/example/demo/User.java
package com.example.demo; public class User { Integer id; String name; public User(Integer id, String name) { this.id = id; this.name = name; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
3、src/main/java/com/example/demo/TestController.java
package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.thymeleaf.context.LazyContextVariable; import java.util.ArrayList; import java.util.List; @Controller public class TestController { @RequestMapping("/{show}") public String test(Model model, @PathVariable("show") boolean show){ model.addAttribute("users", new LazyContextVariable() { @Override protected Object loadValue() { return queryUsers(); } }); model.addAttribute("show", show); return "test"; } private List<User> queryUsers(){ System.out.println("模擬查詢數據,實際應用中可以直接查詢資料庫"); List<User> users = new ArrayList<User>(); users.add(new User(1,"張三")); users.add(new User(2,"李四")); users.add(new User(3,"王五")); return users; } }
4、src/main/resources/templates/test.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> table { border-collapse:collapse;} td { border: 1px solid #C1DAD7;} </style> </head> <body> <table th:if="${show == true}"> <tr th:each="user : ${users}"> <td th:text="${user.id}"></td> <td th:text="${user.name}"></td> </tr> </table> </body> </html>
瀏覽器訪問:
http://localhost:8080/false ,頁面沒顯示數據,控制台沒輸出信息。
http://localhost:8080/true ,頁面顯示數據,控制台輸出"模擬查詢數據,實際應用中可以直接查詢資料庫”。