我正在尝试在 Spring Web 应用程序中手动加载 log4j.properties( mylog4j.properties ) 文件。该文件位于/WEB-INF/下,我正在 SYPLogger 类中读取此文件,如下所示:
private static final String CONF_FILE_NAME = "mylog4j.properties";
Properties props = new Properties();
props.load(new FileInputStream(CONF_FILE_NAME));
PropertyConfigurator.configure(props);
尽管我尝试了不同的位置,但我无法读取该文件。当我给出配置文件的完整路径时,一切正常。但是上面的代码给出了FileNotFoundException(系统找不到指定的文件)。请帮忙。提前致谢。