从默认包和类路径加载配置文件

时间:2014-08-17 10:34:00

标签: java classpath default-package tinylog

在jetty上的JAX-RS应用程序中加载配置文件时出现了一个疯狂的错误。

public class Configuration {
    public static final Properties config = new Properties();

    static {
        config.clear();

        try (InputStream inputStream = Configuration.class.getClassLoader().getResourceAsStream("config.properties")) {
            config.load(inputStream);
        } catch (Exception ex) {
            Logger.error(ex);
        }
    }
}

如果我将config.properties放在默认包中,它运行正常。但是当我用java -cp config.properties加载它时,config对象中没有任何内容。我已经检查了这些方法,但它不起作用。

ClassLoader.getSystemClassLoader().getResourceAsStream("config.properties");
ClassLoader.getSystemClassLoader().getResourceAsStream("/config.properties");
Configuration.class.getClassLoader().getResourceAsStream("config.properties");
Configuration.class.getClassLoader().getResourceAsStream("/config.properties");

奇怪的是我在项目中使用Tinylog作为Logger,而TinyLog以相同的方式加载其tinylog.properties的配置文件:

/* I found this from Tinylog source code */
Configurator.class.getClassLoader().getResourceAsStream("tinylog.properties");

我正在通过java -cp tinylog.properties提供tinylog配置。我的代码有什么问题吗?

1 个答案:

答案 0 :(得分:0)

-cp选项获取目录和jar文件列表。它不接受属性文件。您需要将包含config.properties文件的目录放在类路径中。