我有简单的java项目。我使用 maven 管理我的依赖项。我在 pom.xml 中添加了 log4j 依赖项
现在我想利用
package com.abc.xyz;
import org.apache.log4j.Logger;
/**
* Hello world!
*
*/
public class App
{
static final Logger logger = Logger.getLogger(App.class);
public static void main( String[] args )
{
logger.debug("Hello world!");
}
}
我在资源文件夹中有我的 log4j.properties 文件。
当我将 App 作为 Java 应用程序运行时,出现以下错误。
log4j:WARN No appenders could be found for logger (com.abc.xyz.App).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
所以,我的问题是如何让运行时知道我的 log4j.properties 文件在资源文件夹中。
编辑
这是我的 pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.abc.xyz</groupId>
<artifactId>learning</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>learning</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
这是我的 log4j.properties 文件
# Define the root logger with appender file
log4j.rootLogger = DEBUG