訪問SpringBoot靜態資源

2021-10-13 20:56:04 字數 1147 閱讀 1471

第一步:在pom.xml檔案中新增一下依賴

<

!-- springboot訪問靜態資源的jar檔案--

>

org.springframework.boot<

/groupid>

spring-boot-starter-thymeleaf<

/artifactid>

<

/dependency>

第二步:找到resources資料夾下的static資料夾,可以在這裡面存放資源,也可以自建資料夾,再在裡面存放檔案。

第三步:啟動springboot。

如果檔案是直接存放在static資料夾下,則可以通過localhost:8080/檔名.jpg來訪問。

如果是自建了資料夾,則通過localhost:8080/自建資料夾/檔名.jpg訪問。

補充

如果想讓訪問的路徑對映到電腦的某個資料夾下,則可以寫乙個配置類,進行對映。對映類**如下:

package com.sxu.rubbishclassify.configure;

import org.springframework.context.annotation.configuration;

import org.springframework.web.servlet.config.annotation.resourcehandlerregistry;

import org.springframework.web.servlet.config.annotation.webmvcconfigureradapter;

@configuration

public

class

webmvcconfig

extends

webmvcconfigureradapter

}

此時訪問該資料夾下的則可以通過localhost:8080/image/檔名.jpg訪問。

springboot資靜態資源訪問自定義

官方文件 介紹了可以自配置的一些東西,下面我來嘗試。public resources meta inf resources這些資料夾都是建在resources目錄下的。想要修改訪問的路徑,比如想要用 res air.jpg訪問,就得自定義了,做法是在配置檔案中 這裡使用yaml 這樣寫 spring...

SpringBoot Web開發 訪問靜態資源

webmvcauotconfiguration類下的addresourcehandlers 方法 就是新增資源對映 resourceproperties 設定和靜態資源有關的引數,如快取時間等 webjars 以jar包的方式引入靜態資源 引入webjars依賴 我們可從webjars 找到我們想要...

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

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