springboot 對映靜態資源路徑

2021-10-05 23:43:46 字數 769 閱讀 5108

#對映靜態資源路徑

spring.resources.static-locations=classpath:/meta-inf/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:f:/mycode/springbootcode/ideaprojects/architect/

#顯示mybatis的sql

suolong.jpg是在本地磁碟上儲存的,沒有再專案中儲存,映**靜態資源路徑後,我們就可以通過url訪問該資源。

而lufei.jpg是在專案中儲存的,同樣的spring.resources.static-locations中也映**classpath:/static/,所以我們也可以通過url訪問該資源。

SpringBoot建立web專案靜態資源路徑配置

spring boot檢視配置 spring.mvc.view.prefix web inf views spring.mvc.view.suffix jsp 靜態檔案訪問配置 spring.mvc.static path pattern static 但是,配置完不起作用,每次訪問能進後台cont...

springboot自定義靜態資

pringboot 靜態資源位置,classpath meta inf resources classpath resources classpath static classpath public 預設資源放在這幾個目錄下,是可以訪問的,但是專案中往往需要自己定義靜態資源載入的位置,這個時候就需要...

springboot中css js等靜態資源被攔截

springboot 2.3的版本 會攔截靜態資源。使用 時需新增excludepathpatterns讓所需靜態資源放行 我們自己的css js等靜態資源放在resources static asserts下 而從pom檔案裡面引入的jquery bootstrap放在了webjars下 所以控制...