Spring boot 讀取properties檔案的四種方式
Spring boot 讀取properties檔案的四種方式
- 方式一
使用@Value註解
在application.properties檔案中新增屬性
my.name=lisi
my.old=19
在程式碼中使用
@RestController
@RequestMapping(value = "/my")
public class MyController {
@Value("${my.name}")
private String name;
@Value("${my.old}")
private int old;
@RequestMapping(value = "/test3")
public String test3() {
return "my name is " + name + "---" + old;
}
}
- 方式二
使用Environment
配置檔案還是原來的配置檔案
@RestController
@RequestMapping(value = "/my")
public class MyController {
@Autowired
private Environment env;
@RequestMapping(value = "/test5")
public String test5() {
return "my name is " + env.getProperty("my.name") + " --" + env.getProperty("my.old");
}
}
結果是一樣的。
- 方式三
通過@ConfigurationProperties註解,把對應的屬性編寫對應的配置類
@Component
@ConfigurationProperties(prefix = "my")
public class PropertiesConfig {
private String name;
private int old;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getOld() {
return old;
}
public void setOld(int old) {
this.old = old;
}
}
@RestController
@RequestMapping(value = "/my")
@ConfigurationProperties(prefix = "my")
public class MyController {
private String name;
private int old;
@Autowired
private PropertiesConfig config;
@RequestMapping(value = "/test4")
public String test4() {
return "my name is " + config.getName() + config.getOld();
}
}
結果同上。
- 方式四 使用PropertiesLoaderUtils
首先在resources資料夾下建立app-config.properties檔案
裡面有兩個屬性
my.name=zhangsan
my.old=18
檔案屬性監聽器
import org.springframework.boot.context.event.ApplicationStartedEvent;
import org.springframework.context.ApplicationListener;
public class PropertiesListener implements ApplicationListener<ApplicationStartedEvent> {
private String propertyFileName;
public PropertiesListener(String propertyFileName) {
this.propertyFileName = propertyFileName;
}
@Override
public void onApplicationEvent(ApplicationStartedEvent event) {
PropertiesListenerConfig.loadAllProperties(propertyFileName);
}
}
編寫PropertiesListenerConfig
import org.springframework.beans.BeansException;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
public class PropertiesListenerConfig {
public static Map propertiesMap = new HashMap();
private static void processProperties(Properties props) throws BeansException {
propertiesMap = new HashMap<String, String>();
for (Object key : props.keySet()) {
String keyStr = key.toString();
try {
// PropertiesLoaderUtils的預設編碼是ISO-8859-1,在這裡轉碼一下
propertiesMap.put(keyStr, new String(props.getProperty(keyStr).getBytes("ISO-8859-1"), "utf-8"));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (java.lang.Exception e) {
e.printStackTrace();
}
}
}
public static void loadAllProperties(String propertyFileName) {
try {
Properties properties = PropertiesLoaderUtils.loadAllProperties(propertyFileName);
processProperties(properties);
} catch (IOException e) {
e.printStackTrace();
}
}
public static String getProperty(String name) {
return propertiesMap.get(name).toString();
}
public static Map<String, String> getAllProperty() {
return propertiesMap;
}
}
編寫完成之後需要在專案啟動的時候註冊監聽器,修改啟動的main函式
public static void main(String[] args) {
SpringApplication application = new SpringApplication(DemoSpringbootApplication.class);
// 第四種方式:註冊監聽器
application.addListeners(new PropertiesListener("app-config.properties"));
application.run(args);
}
控制器類
@RestController
@RequestMapping(value = "/my")
public class MyController {
@RequestMapping("/test6")
public Map<String, Object> test6() {
Map<String, Object> map = new HashMap<String, Object>();
map.putAll(PropertiesListenerConfig.getAllProperty());
return map;
}
}
結果如下:
總結到此結束,若有錯誤或補充可以聯絡我guofei_wu@163.com,謝謝~
相關文章
- Spring Boot讀取配置檔案的幾種方式Spring Boot
- spring- properties 讀取的五種方式Spring
- spring-boot-route(二)讀取配置檔案的幾種方式Springboot
- java Spring讀取properties檔案的注意點JavaSpring
- 精進 Spring Boot 03:Spring Boot 的配置檔案和配置管理,以及用三種方式讀取配置檔案Spring Boot
- java讀取properties檔案Java
- Spring Boot 讀取配置內容的三種方式Spring Boot
- Spring用程式碼來讀取properties檔案Spring
- Spring Boot 入門系列(二十五)讀取配置檔案的幾種方式詳解!Spring Boot
- php讀取檔案的幾種方式PHP
- [轉]Spring Boot讀取配置檔案常用方式[強烈建議閱讀]Spring Boot
- mybatis讀取properties檔案內容MyBatis
- java中讀取.properties配置檔案Java
- Spring Boot中的 6 種API請求引數讀取方式Spring BootAPI
- Spring Boot EL獲取配置檔案中的值的方式Spring Boot
- spring boot更改配置檔案 application.properties的位置Spring BootAPP
- 【JavaEE】讀取配置檔案路徑的幾種方式Java
- go–讀取檔案的方式Go
- Java讀取properties配置檔案工具包Java
- Java系列-如何讀取.properties屬性檔案Java
- Spring Boot 2 實戰:常用讀取配置的方式Spring Boot
- Python四種逐行讀取檔案內容的方法Python
- Spring Boot 專案鑑權的 4 種方式Spring Boot
- 讀取resources中properties檔案內容範例
- Java讀取properties檔案連線資料庫Java資料庫
- Spring Boot、Nacos配置檔案properties、yml、yaml的優先順序Spring BootYAML
- 5種高大上的yml檔案讀取方式,你知道嗎?
- Spring Boot啟動後讀取jar包內部檔案Spring BootJAR
- Spring Boot下Profile的四種切換方式思路總結Spring Boot
- Spring Boot更改上下文路徑的四種方式Spring Boot
- Spring Boot的五種部署方式Spring Boot
- Java中讀取檔案6種記憶體安全方式Java記憶體
- 工具類,關於手工讀取 properties檔案引數
- spring的四種注入方式Spring
- Spring boot中沒有application.properties的解決方式Spring BootAPP
- Spring6 當中 獲取 Bean 的四種方式SpringBean
- java中多種方式讀檔案Java
- 【Spring原始碼分析】.properties檔案讀取及佔位符${...}替換原始碼解析Spring原始碼