读取相关的配置

本文介绍了在Java中如何从不同位置加载配置文件,并通过多种方式解析配置信息,包括使用INI4j处理shiro_base_auth.ini,通过ResourceBundle读取redis配置参数,以及通过ClassLoader获取conf目录下的属性文件。
摘要由CSDN通过智能技术生成

String fileName = "shiro_base_auth.ini";
ClassPathResource cp = new ClassPathResource(fileName);

ini = new INI4j(cp.getFile());

 

------------------------------------------------------------------------

// 读取相关的配置  配置文件必须放在src下

ResourceBundle resourceBundle = ResourceBundle.getBundle("redis");
int maxActive = Integer.parseInt(resourceBundle.getString("redis.pool.maxActive"));
int maxIdle = Integer.parseInt(resourceBundle.getString("redis.pool.maxIdle"));
int maxWait = Integer.parseInt(resourceBundle.getString("redis.pool.maxWait"));

 

-------------------------------------------------------------------------

public final static String DIR = PathConstants.class.getClassLoader().getResource("conf").getPath();
public final static String baseConfig = DIR + File.separator + "jflow-path.properties";

 

-------------------------------------------------------------------------------

private static final Resource CONF_FILENAME = new ClassPathResource("fdfs_client.properties");;

/** fdfs 访问的根Url **/
private static String fastDFSUrl = "";

public static String getFastDFSUrl(){
try {
IniFileReader iniReader = new IniFileReader(CONF_FILENAME.getFile().getAbsolutePath());
fastDFSUrl = iniReader.getStrValue("fastDFSUrl");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return fastDFSUrl;
}

转载于:https://www.cnblogs.com/raphael5200/p/6481064.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值