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-boot-route(二)讀取配置檔案的幾種方式Springboot
- java Spring讀取properties檔案的注意點JavaSpring
- 精進 Spring Boot 03:Spring Boot 的配置檔案和配置管理,以及用三種方式讀取配置檔案Spring Boot
- Spring Boot 讀取配置內容的三種方式Spring Boot
- Spring Boot 入門系列(二十五)讀取配置檔案的幾種方式詳解!Spring Boot
- php讀取檔案的幾種方式PHP
- [轉]Spring Boot讀取配置檔案常用方式[強烈建議閱讀]Spring Boot
- mybatis讀取properties檔案內容MyBatis
- Spring Boot EL獲取配置檔案中的值的方式Spring Boot
- Spring Boot中的 6 種API請求引數讀取方式Spring BootAPI
- Java讀取properties配置檔案工具包Java
- go–讀取檔案的方式Go
- Spring Boot、Nacos配置檔案properties、yml、yaml的優先順序Spring BootYAML
- Spring Boot 2 實戰:常用讀取配置的方式Spring Boot
- Spring Boot 專案鑑權的 4 種方式Spring Boot
- SpringBoot--SpringBoot 讀取Properties檔案(結合JDBC)Spring BootJDBC
- 讀取resources中properties檔案內容範例
- Java讀取properties檔案連線資料庫Java資料庫
- Spring Boot啟動後讀取jar包內部檔案Spring BootJAR
- 5種高大上的yml檔案讀取方式,你知道嗎?
- 工具類,關於手工讀取 properties檔案引數
- Spring Boot更改上下文路徑的四種方式Spring Boot
- Spring Boot下Profile的四種切換方式思路總結Spring Boot
- Spring Boot的五種部署方式Spring Boot
- Spring Boot 框架中配置檔案 application.properties 當中的所有配置大全Spring Boot框架APP
- 是時候搞清楚 Spring Boot 的配置檔案 application.properties 了!Spring BootAPP
- Java中讀取檔案6種記憶體安全方式Java記憶體
- Spring之Property檔案讀取Spring
- Spring6 當中 獲取 Bean 的四種方式SpringBean
- Spring boot 獲取yml檔案工具類Spring Boot
- Spring Cloud Gateway+Nacos,yml+properties兩種配置檔案方式搭建閘道器服務SpringCloudGateway
- PG獲取檔案大小的幾種方式
- Spring Boot開啟的2種方式Spring Boot
- spring cloud+spring boot 電子商務spring boot獲取配置檔案的屬性CloudSpring Boot
- Spring Boot讀取外部配置檔案失敗,原因絕對出乎你意料Spring Boot
- Spring Boot + Vue 前後端分離,兩種檔案上傳方式總結Spring BootVue後端
- python讀取大檔案的幾種方法Python