您好,登錄后才能下訂單哦!
本篇內容主要講解“SpringBoot Web開發的方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot Web開發的方法”吧!
在介紹Web開發模塊之前,先總結一下SpringBoot中如何引入某一個模塊,我們知道,SpringBoot將功能模塊封裝為一個個的Starter :
1)、創建SpringBoot應用,選中我們需要的模塊;
2)、SpringBoot已經默認將這些場景配置好了,只需要在配置文件中指定少量配置就可以運行起來
3)、自己編寫業務代碼;
這個場景SpringBoot幫我們配置了什么?能不能修改?能修改哪些配置?能不能擴展?
xxxxAutoConfiguration:幫我們給容器中自動配置組件;
xxxxProperties:配置類來封裝配置文件的內容;
1)、所有 /webjars/** ,都去資源jar包下 classpath:/META-INF/resources/webjars/ 找資源;
webjars:以jar包的方式引入靜態資源;
webjars網站,進入網站
<!‐‐引入jquery‐webjar 在訪問的時候只需要寫webjars下面資源的名稱即可 ‐‐> <dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>3.4.1</version> </dependency>
示例
如果引用jquery,那么路徑應該寫為:
localhost:8080/webjars/jquery/3.4.1/jquery.js
2)、"/**" 訪問當前項目的任何資源,都去(靜態資源的文件夾)找映射
"classpath:/META‐INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/" "/":當前項目的根路徑
示例
localhost:8080/abc # 去靜態資源文件夾里面找abc
3)、歡迎頁; 靜態資源文件夾下的所有index.html頁面;被"/**"映射;
示例: localhost:8080/ 找index頁面
4)、所有的 **/favicon.ico 都是在靜態資源文件下找;
我們常見的模版引擎有:JSP、Velocity、Freemarker、Thymeleaf
SpringBoot官網推薦我們用Thymeleaf
原理圖如下:
<properties> <!-- 修改版本 --> <thymeleaf.version>3.0.9.RELEASE</thymeleaf.version> <!-- 布局功能的支持程序 thymeleaf3主程序 layout2以上版本 --> <!-- thymeleaf2 layout1 --> <thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version> </properties> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
從 ThymeleafProperties 類中我們可以看出Thymeleaf 如何使用以及配置信息:
@ConfigurationProperties(prefix = "spring.thymeleaf") public class ThymeleafProperties { private static final Charset DEFAULT_ENCODING = StandardCharsets.UTF_8; public static final String DEFAULT_PREFIX = "classpath:/templates/"; public static final String DEFAULT_SUFFIX = ".html"; // ....省略... }
只要我們把HTML頁面放在classpath:/templates/,thymeleaf就能自動渲染;
1、導入thymeleaf的名稱空間
<htmllang="en"xmlns:th="http://www.thymeleaf.org">
2、使用thymeleaf語法;
到此,相信大家對“SpringBoot Web開發的方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。