这可能是一个古老的问题,我相信每个人都有自己的方式.
假设我定义了一些属性,例如
secret.user.id=user
secret.password=password
website.url=https://stackoverflow.com
假设我有100个不同的类和位置,我需要使用这些属性.
哪一个好
(1)我创建了一个Util类,它将加载所有属性并使用键常量为它们提供服务
如 :
Util是一个单例,可以加载所有属性并保持getInstance()调用.
Util myUtil = Util.getInstance();
String user = myUtil.getConfigByKey(Constants.SECRET_USER_ID);
String password = myUtil.getConfigByKey(Constants.SECRET_PASSWORD);
..
//getConfigByKey() - inturns invokes properties.get(..)
doSomething(user,password)
所以,无论我需要这些属性,我都可以采取以上措施.
(2)我创建了一个有意义的类来表示这些属性;说,
ApplicationConfig并提供getter以获取特定属性.
所以上面的代码可能如下所示:
ApplicationConfig config = ApplicationConfig.getInstance();
doSomething(config.getSecretUserId(),config.getPassword());
//ApplicationConfig would have instance variables that are initialized during
// getInstance() after loading from properties file.
我个人的选择是(2) – 让我听一些评论?
最佳答案
原文链接:https://www.f2er.com/java/437640.html