解决spring boot读取自定义配置文件的办法
程序员文章站
2022-05-01 23:08:26
...
注解的办法虽然够用,但是对于老项目移植时兼容不是很好,所以可以写一个简单粗暴的类解决。
首先,在工具类中创建一个读取配置文件的工具类SystemConfigReader
public class SystemConfigReader {
private static Properties prop = null;
public static void init() {
try {
ClassPathResource classPathResource = new ClassPathResource("conf.properties");
prop = new Properties();
InputStream is = classPathResource.getInputStream();
prop.load(is);
is.close();
} catch (Exception e) {
System.out
.println("Can't read file stream, file name is conf.properties");
e.printStackTrace();
}
}
public static Properties getProp() {
if (null == prop)
init();
return prop;
}
/**
*
* @param key
* @return string value of the key
*/
/**
* get value by key
*
* @param key
* @return
*/
public static String getValueByKey(String key) {
getProp();
String s = prop.getProperty(key);
if (null != s) {
return s.trim();
} else {
System.out.println(" mino key value not founded , the key is :"
+ key);
return "";
}
}
}
读取的时候只需调用SystemConfigReader.getValueByKey(“key”)方法,也可以改造把方法抽象出来,做一个读取任意配置文件的工具类,都很简单,时间有限,我就不详细叙述了,第一次写博客,希望大家能用得到。
推荐阅读
-
Spring Boot集成X-admin2.2时,使用layui的字体图标时无法正常显示或乱码的解决办法
-
Spring Boot集成X-admin2.2时,使用layui的字体图标时无法正常显示或乱码的解决办法
-
IIS7/iis7.5 HTTP Error 500.19 配置错误由于权限不足而无法读取配置文件的解决办法
-
Spring Boot读取自定义配置文件
-
spring boot 自定义配置文件的类型转换
-
Spring Boot升级到2.1.5.RELEASE后pom.xml出现Unknown错误的解决办法
-
Spring Boot——读取.properties配置文件解决方案
-
解决spring boot读取自定义配置文件的办法
-
spring boot 读取自定义资源文本配置文件
-
【Spring Boot】Spring Boot @ConfigurationProperties示例 | 读取自定义配置文件信息