大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说Java resources目录下文件读取[通俗易懂],希望您对编程的造诣更进一步.
大家好,我是Godric。
近期一直在从事用户中心方面的工作,作为所有系统的入口,几乎所有系统都依赖我们提供的服务,为此整个团队对外提供了两种SDK,一种是与用户相关的登录、鉴权以及系统跳转等,另一种是主数据查询服务。
在实现sdk时,遇到了配置读取问题,公司内推荐使用apollo作为配置中心,但是有部分应用无法使用,所以需要兼容apollo以及本地配置文件的温度。
解决方式,在约定上做了规定优先读取文件,如果有配置文件,则读取文件,反之读取apollo。
配合Properties使用,同时考虑到不同环境的隔离,通过读取系统配置spring.profiles.active,进行环境隔离。以下是文件读取的具体实现,
public class PropertiesUtil extends Properties {
private static Log log = LogFactory.getLog(PropertiesUtil.class);
private static PropertiesUtil instance;
public static PropertiesUtil getInstance() {
if (instance != null) {
return instance;
} else {
makeInstance();
return instance;
}
}
// 同步方法
private static synchronized void makeInstance() {
if (instance == null) {
instance = new PropertiesUtil();
}
}
// 加载属性文件
private PropertiesUtil() {
try {
String profile = System.getProperty("spring.profiles.active");
String classPath = "/xxx.properties";
if (StringUtils.isNotBlank(profile)) {
classPath = "/xxx-" + profile + ".properties";
}
InputStream is = this.getClass().getResourceAsStream(classPath);
if (is != null) {
load(is);
//log.info("读取本地配置文件信息:classPath="+classPath);
is.close();
}else{
//log.info("本地配置文件不存在:classPath="+classPath);
}
} catch (Exception e) {
//log.error("---读取属性文件出错了---");
// e.printStackTrace();
}
}
}
在实现文件读取时,在获取文件流时,特别要注意文件的位置,因为文件是在resources下,所以在读取时有两种方式。
- 字节流
this.getClass().getResourceAsStream(classPath)
这样才完成了配置的加载,接下来就是实现配置的读取了
/**
* 获取属性
*
* @param key
* @return
*/
public static String getProperty(String key) {
return
PropertiesUtil.getInstance().getProperty(key);
}
/**
* 获取属性
*
* @param key 属性key
* @param defaultValue 属性value
* @return
*/
public static String getProperty(String key, String defaultValue) {
return
PropertiesUtil.getInstance().getProperty(key,defaultValue);
}
这样在需要使用配置读取的类中可以直接使用了。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/12137.html