溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot中靜態(tài)資源訪問的示例分析

發(fā)布時(shí)間:2021-07-08 10:19:21 來源:億速云 閱讀:142 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)SpringBoot中靜態(tài)資源訪問的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

一、概述

springboot 默認(rèn)靜態(tài)資源訪問的路徑為:/static 或 /public 或 /resources 或 /META-INF/resources 這樣的地址都必須定義在src/main/resources目錄文件中,這樣可以達(dá)到在項(xiàng)目啟動(dòng)時(shí)候可以自動(dòng)加載為項(xiàng)目靜態(tài)地址目錄到classpath下 ,靜態(tài)訪問地址其實(shí)是使用 ResourceHttpRequestHandler 核心處理器加載到WebMvcConfigurerAdapter進(jìn)行對(duì)addResourceHandlers方法進(jìn)行覆蓋.將靜態(tài)訪問目錄進(jìn)行重新定義。我們也可以實(shí)現(xiàn)其中方法,手動(dòng)指定靜態(tài)訪問路徑通過繼承WebMvcConfigurerAdapter重寫內(nèi)部方法addResourceHandlers也可以達(dá)到我們想要的效果。

第一種方式 : 放在src/main/webapp目錄下

放在webapp目錄下的靜態(tài)資源是可以直接訪問的

SpringBoot中靜態(tài)資源訪問的示例分析

user.html

SpringBoot中靜態(tài)資源訪問的示例分析

2.png

SpringBoot中靜態(tài)資源訪問的示例分析

在user.html中引用2.png

SpringBoot中靜態(tài)資源訪問的示例分析

第二種方式:放在classpath下

ResourceProperties中的說明

org.springframework.boot.autoconfigure.web.ResourceProperties
 private static final String[] CLASSPATH_RESOURCE_LOCATIONS = {
   "classpath:/META-INF/resources/", "classpath:/resources/",
   "classpath:/static/", "classpath:/public/" };

靜態(tài)資源默認(rèn)放在classpath路徑下:Defaults to classpath:[/META-INF/resources/,/resources/, /static/, /public/] plus context:/ (the root of the servlet context).

SpringBoot中靜態(tài)資源訪問的示例分析

person/index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link href="/css/main.css" rel="external nofollow" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="/js/main.js"></script>
<script type="text/javascript">
 sayHello();
</script>
</head>
<body>
 <h4>person page HTML</h4>
</body>
</html>

SpringBoot中靜態(tài)資源訪問的示例分析

通過修改配置項(xiàng),設(shè)置靜態(tài)資源的位置

application.properties
# 修改默認(rèn)的靜態(tài)資源存放目錄
spring.resources.static-locations=classpath:/web/

SpringBoot中靜態(tài)資源訪問的示例分析

關(guān)于“SpringBoot中靜態(tài)資源訪問的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI