SpringBoot系列(四)資源檔案屬性配置

2021-08-25 02:54:43 字數 894 閱讀 1114

自定義資源檔案

1、首先在pom.xml中新增依賴,不新增的話讀取不到

org.springframework.boot

spring-boot-configuration-processor

true

2、繫結資源檔案

@configuration

@configurationproperties(prefix="com.hxk.opensource")

@propertysource("classpath:/resource.properties")

public class resource

public void setname(string name)

public string getaddress()

public void setaddress(string address)

}

3、自定義資源檔案如下

4、注入資源檔案

將resource注入到usercontroller 中,當容器啟動完成後,會載入資源檔案,並實現對映

@restcontroller

public class usercontroller

}

5、重啟測試

以上to be continued...

spring boot 靜態資源

springboot中,預設的靜態資源路徑有 配置在resourceproperties類中 private static final string classpath resource locations 優先順序 靜態資源路徑 例如 webmvcautoconfiguration自動裝配類中,可...

springboot載入靜態資源

使用springboot寫了簡單的web專案,頁面使用jsp檔案 但是靜態資源js 載入不到,看了下官方文件發現是因為路徑不對 所以專案靜態資源應該配置在根路徑下這四個資料夾中是可以直接訪問到的 meta inf resources,public,resources,static下的資源,對映路徑 ...

Spring Boot 靜態資源處理

在web開發中,靜態資源的訪問是必不可少的,如 js css 等資源的訪問。spring boot 對靜態資源訪問提供了很好的支援,基本使用預設配置就能滿足開發需求。spring boot 對靜態資源對映提供了預設配置 spring boot 預設將 所有訪問對映到以下目錄 classpath st...