Learn to configure Log4j2 using Maven and Gradle dependencies.
1. Log4j Modules
The main modules of interest are given below.
- log4j-api – provides the adapter components required for implementers to create a logging implementation.
- log4j-core – core Log4j Implementation classes.
- log4j-slf4j-imp – allows applications coded to the SLF4J API to use Log4j2 as the implementation.
- log4j-jcl – provides bridge for Apache commons logging.
- log4j-jul – adapter for Java utility logging (JUL).
- log4j-web – provides support for automatically enabling Log4j in Servlet containers.
We can read the complete list of modules and their dependencies at this link.
2. Maven Dependencies
An example of log4j2 configuration with SLF4J using Maven.
<properties>
<log4j2.version>2.15.0</log4j2.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
</dependency>
</dependencies>
3. Gradle Dependencies
An example of log4j2 configuration using Gradle.
dependencies {
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.15.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.15.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.15.0'
}
Let me know your thoughts in comments or feedback.
Happy Learning !!
Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.