您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關SpringBoot中靜態資源訪問的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
一、概述
springboot 默認靜態資源訪問的路徑為:/static 或 /public 或 /resources 或 /META-INF/resources 這樣的地址都必須定義在src/main/resources目錄文件中,這樣可以達到在項目啟動時候可以自動加載為項目靜態地址目錄到classpath下 ,靜態訪問地址其實是使用 ResourceHttpRequestHandler 核心處理器加載到WebMvcConfigurerAdapter進行對addResourceHandlers方法進行覆蓋.將靜態訪問目錄進行重新定義。我們也可以實現其中方法,手動指定靜態訪問路徑通過繼承WebMvcConfigurerAdapter重寫內部方法addResourceHandlers也可以達到我們想要的效果。
第一種方式 : 放在src/main/webapp目錄下
放在webapp目錄下的靜態資源是可以直接訪問的
user.html
2.png
在user.html中引用2.png
第二種方式:放在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/" };
靜態資源默認放在classpath路徑下:Defaults to classpath:[/META-INF/resources/,/resources/, /static/, /public/] plus context:/ (the root of the servlet context).
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>
通過修改配置項,設置靜態資源的位置
application.properties # 修改默認的靜態資源存放目錄 spring.resources.static-locations=classpath:/web/
關于“SpringBoot中靜態資源訪問的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。