Spring Boot 整合視圖層技術,application全局配置文件

来源:https://www.cnblogs.com/joker-dj/archive/2020/04/08/12657530.html
-Advertisement-
Play Games

"TOC" Spring Boot 整合視圖層技術 Spring Boot 整合jsp Spring Boot 整合Freemarker Spring Boot 整合 Thymeleaf (重點講解,官方推薦) Spring Boot 整合jsp 步驟: 1. 新建maven project的Spr ...


目錄

Spring Boot 整合視圖層技術

Spring Boot 整合jsp
Spring Boot 整合Freemarker
Spring Boot 整合 Thymeleaf  (重點講解,官方推薦)

Spring Boot 整合jsp

步驟:

  1. 新建maven project的Spring Boot 的jar項目
    在這裡插入圖片描述
    在這裡插入圖片描述
  2. 打開pom.xml文件 加入jsp依賴
    在這裡插入圖片描述
    代碼如下:
 <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.4.RELEASE</version>
    </parent>
    <dependencies>
        <!-- spring boot web啟動器 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- jstl -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <!-- jasper:jsp引擎 -->
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
    </dependencies>

  1. 編寫控制器Controller(不訪問資料庫)
    在這裡插入圖片描述
    代碼如下:
@Controller
public class UserController {
	/**
	 * 獲取用戶信息,到jsp頁面進行展示
	*/
	@RequestMapping("/userList")
	public String getUsersAll(Model model) {
		//訪問業務層-->數據訪問層mapper-->mybatis資料庫獲取所有用戶信息
		//模擬,定義固定的用戶信息
		List<User> list=new ArrayList<User>();
		list.add(new User("007", "小張", 22));
		list.add(new User("009","小康",32));
		list.add(new User("012","小健",18));
		model.addAttribute("list", list);
		//配置springmvc的視圖解析器,首碼:/WEB-INF/   尾碼: .jsp
		return "index";
	}
}

  1. 創建Spring Boot的全局配置文件 application.properties
    src/main/resources-->創建-->application.properties
    Spring boot預設識別兩個全局配置文件:application.properties和application.yml
    在這裡插入圖片描述
    代碼:
#配置jsp的訪問的首碼和尾碼 (視圖解析器)
spring.mvc.view.prefix=/WEB-INF/
spring.mvc.view.suffix=.jsp

  1. 視圖層 jsp
    src/main-->webapp-->WEB-INF-->index.jsp
    在這裡插入圖片描述
    代碼:
<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<%@taglib  uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>用戶顯示頁面</title>
</head>
<body>
<table border="1" width="60%" align="center">
    <tr>
        <td>用戶編號</td>
        <td>用戶名稱</td>
        <td>年齡</td>
    </tr>
    <c:forEach items="${list}" var="user">
        <tr>
            <td>${user.id}</td>
            <td>${user.username}</td>
            <td>${user.age}</td>
        </tr>
    </c:forEach>
</table>
</body>
</html>

  1. 啟動類
@SpringBootApplication
public class App {
    public static void main(String[] args) {
        SpringApplication.run(App.class, args);
    }
}
  1. 運行 瀏覽器輸入 localhost:8080/userList
    在這裡插入圖片描述

Spring Boot 整合freemarker

  1. 創建maven project 的jar 的spring boot 項目 (步驟一樣省略)
  2. 打開pom.xml,加入freemarker相關依賴
    在這裡插入圖片描述
    代碼:
<dependencies>
     <!--spring boot web 啟動器坐標 -->
     <dependency>
     	<groupId>org.springframework.boot</groupId>
    	<artifactId>spring-boot-starter-web</artifactId>
     </dependency>
     
     <!-- freemarker 啟動器坐標 -->
     <dependency>
     	<groupId>org.springframework.boot</groupId>
    	<artifactId>spring-boot-starter-freemarker</artifactId>
     </dependency>
  </dependencies>

  1. 編寫控制器Controller
    在這裡插入圖片描述
  2. 視圖層 freemarker
    freemarker 頁面必須放入src/main/resources下的templates目錄下,並且頁面的擴展名為:ftl
    在這裡插入圖片描述
    代碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>用戶顯示頁面</title>
</head>
<body>
   <table border="1" width="60%" align="center">
       <tr>
       	  <td>用戶編號</td>
       	  <td>用戶名稱</td>
       	  <td>年齡</td>
       </tr>
	   <!--freemarker獲取request傳過來的數據  <#數據類型  key類型 as 遍歷元素名稱>-->
	   <#list list as user>
	       <tr>
	       	  <td>${user.id}</td>
	       	  <td>${user.username}</td>
	       	  <td>${user.age}</td>
	       </tr>
	   </#list>
   </table>
</body>
<html>

  1. 創建Spring Boot的全局配置文件 application.properties
    在這裡插入圖片描述
    代碼:
# 模板編碼。
spring.freemarker.charset= UTF-8
# 尾碼,在構建URL時附加到查看名稱。
spring.freemarker.suffix=.ftl
# 逗號分隔的模板路徑列表。src/main/resources==classpath
spring.freemarker.template-loader-path=classpath:/templates/
server.port=8081
  1. 啟動類
@SpringBootApplication
public class App {
	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}
}

運行
在這裡插入圖片描述


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1. 圖片 <img src='圖片的地址' />:最後的 / 可以不加,HTML5不加 2. 音頻 <audio 屬性=" "> <source src=" 音頻的地址" type="類型" > </audio> 各個瀏覽器所支持音頻的格式: 示例: 3. 視頻 <video width = ' ...
  • 1. head 標記 <title> 標題 </title>:當前網頁標題 <style> CSS代碼 </style>:寫CSS用的 <link href = " css 文件的地址" rel = " stylesheet " />:引入css文件 <script> javascript 代碼 < ...
  • 1. 表單標記 表單作用:為了收集用戶信息的作用,如:登錄、註冊、搜索 文本框 <input type = " text " name = " 名稱 " /> 密碼框 <input type = " password " name = " 名稱 " /> 單選框 <input type = " ra ...
  • 1. 你們系統里為什麼要使用消息隊列? 2. 既然使用了消息隊列,說說他還有什麼使用場景? 3. 消息隊列的優缺點是什麼? ...
  • 所有代碼和筆記均可在 "我的GitHub" 中獲取,不嫌麻煩可以點個 star 支持一下
  • 仿射期限結構模型:理論與實現——實現部分 [toc] 本文介紹如何以面向對象的方式實現 " Affine Term Structure Models: Theory and Implementation " 中的演算法,並適當的使用設計模式使代碼儘可能的優雅。 引言 金融工程領域的模型和方法之間既有強 ...
  • "TOC" 系統架構 概述 隨著互聯網的發展,網站應用的規模不斷擴大。需求的激增,帶來的是技術上的壓力。 系統架構也因此也不斷的演進、升級、迭代。 從單一應用,到垂直拆分,到分散式服務,到SOA,以及現在火熱的微服務架構 集中式架構 概述 當網站流量很小時,只需一個應用 將所有功能都部署在一起,以減 ...
  • "TOC" Spring Boot整合Thymeleaf Spring Boot整合Thymeleaf(Spring Boot官方推薦的視圖層技術) Thymeleaf特點:thymeleaf通過特定的語法對html的標記進行渲染。 Spring Boot整合Thymeleaf 的項目步驟 1. 創 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...