如何在JAVA中的多线程环境中从config.properties加载属性

时间:2013-08-15 11:17:57

标签: java multithreading properties multiprocessing


我有程序从文件config.properties加载主类属性,如下所示:

    public class DirectoryWatcher {
       public static String FOLDER = null;
       Properties prop = new Properties();

       prop.load(new FileInputStream(new File(configPath)));
       FOLDER = prop.getProperty("FOLDER");
    }        

许多线程需要FOLDER,因此我将其设置为 public static ,因此线程可以使用它。

我不喜欢这种编程,我正在寻找一些最佳实践 你能给我一些更好的建议吗? 谢谢。

4 个答案:

答案 0 :(得分:1)

对我而言,这就足够了

public class DirecoryWatcher{
    private static String FOLDER;

    public static synchronized getFolder(){
        if(FOLDER == null){
            // FOLDER = your loading code
        }
        return FOLDER;
    }
}

确保将您从文件中读取的值分配给静态字段,因此请确保只读取一次。

此外,同步方法是访问资源的一种很好的做法,对于这种情况并非完全强制要求,因为您只是在阅读文件。

您还可以使此方法可扩展,以读取作为参数给出的任何属性。为了清晰起见,我对FOLDER进行了硬编码。

public class DirectoryWatcher{

   private static Map<String,String> properties = new HashMap<String,String>();

   public static synchronized getValueFor(String prop){
       String result = null;
       if( !properties.keySet().contains(prop)){
          result = // your loading code
          properties.put(prop, result);
       }else{
          result = properties.get(prop);
       }
       return result;
    }
}

此代码将为您提供线程安全性并支持任何给定数量的属性。它还增强了代码的封装,你可以为它添加一些逻辑(你不只是暴露文件的内容)。

此外,在这种情况下,在首次需要属性之前不会加载属性。如果从未使用过属性,则不会读取它。这样可以提高内存使用率,不会在不需要的值上浪费内存。

另一个需要考虑的重要事项是,通过此实现,您的属性加载器类可以非常轻松地处理错误和异常。使用另一种方法,您将处理问题的责任委托给请求该属性的对象。

答案 1 :(得分:1)

你可以把它作为最终结果:

private static final Properties prop = new Properties();
public static final String FOLDER;

static {
    try {
        prop.load(new FileInputStream(new File(configPath)));
    } catch (IOException ex) {
        //outch => log and exit?
    }
    FOLDER = prop.getProperty("FOLDER");
}

这将确保从任何线程都可以看到它。如果你有多个属性,你也可以使用this example使用枚举并且是线程安全的。

答案 2 :(得分:1)

也许你可以使用Singleton pattern解决这个问题?

如果您有大量要加载的信息,也可以对文件夹使用延迟加载。

答案 3 :(得分:1)

你可以像这样定义一个简单的属性文件阅读器

public class LoadDataFromPropertiesFile {

public final static Properties loadPropertiesFile(String fileName) {
    ClassLoader loader = Thread.currentThread().getContextClassLoader();
    InputStream inStream=null;

    try {
        inStream =  loader.getResourceAsStream(fileName);
        if (inStream == null) {
            throw new RuntimeException("Couldn't find " + fileName + "in class path");
        }
        Properties prop = new Properties();
        prop.load(inStream);

        return prop;
    } catch (IOException e) {
        e.printStackTrace();
        throw new RuntimeException(e);
    }finally {
        if (inStream != null) {
            try {
                inStream.close();
            } catch (IOException e) {
                e.printStackTrace();
                throw new RuntimeException(e);
            }
        }
    }       
}   
}

特定的属性文件可以如下所示。

public class DirectoryWatcher {
public static final Properties directoryWatcher;
static {
    directoryWatcher =     LoadDataFromPropertiesFile.loadPropertiesFile("config.properties");
}     

}

您可以定义为ENUM类型的属性...您可以在此列出您的属性

public enum DirectoryProperties {
        FOLDER("FOLDER","Directory Type Folder"),
        IMAGE("IMG","Image File");
;

DirectoryProperties(String code, String description) {
    this.code = code;
    this.description = description;

}

public String getCode() {
    return code;
}

public String getDescription() {
    return description;
}

private String code;
private String description;

}

您可以在任何线程中使用您的属性。像这样

DirectoryWatcher.directoryWatcher.getProperty(DirectoryProperties.FOLDER.getCode());

您可以根据需要使用说明。