12

I'm having some problems putting my log4j.properties file on classpath. I can use it when I'm developing (Eclipse Indigo) but, when I export my app as a JAR, I can't.

I've made by hand a MANIFEST.MF file for the exported JAR:

Manifest-Version: 1.0
Main-Class: main.Program
Class-Path: lib/log4j.properties lib/log4j-1.2.15.jar

And then with put the JAR on this file organization:

folder
  |-------- app.jar
  |-------- lib
             |--------- log4j.properties
             |--------- log4j-1.2.15.jar

When I try to run app.jar, they find log4j.jar but not log4j.properties:

log4j:WARN No appenders could be found for logger (main.Program).
log4j:WARN Please initialize the log4j system properly.

My log4j.properties file it's like this:

log4j.rootLogger=INFO, stdout, file

PATTERN=[%d] [%p] [%c{1}]: %m%n

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=${PATTERN}

log4j.appender.file=org.apache.log4j.DailyRollingFileAppender
log4j.appender.file.DatePattern='.'yyyy-MM-dd
log4j.appender.file.File=${logger_file_path}
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=${PATTERN}
Kevin Panko
  • 8,356
  • 19
  • 50
  • 61
rnunes
  • 2,785
  • 7
  • 28
  • 56

6 Answers6

18

one more way to do this: -Dlog4j.configuration=file:"./log4j.properties"

petertc
  • 3,607
  • 1
  • 31
  • 36
12

There are three ways l know.

  1. Add log4j.properties to app.jar
  2. Put the log4j.properties to the "folder" (where the JAR exists) and change the class-path to .lib/log4j-1.2.15.jar.
  3. Put the log4j.properties to the folder named "conf" for example, and change the class-path to ./conf/.

I have tried, it works.

Tom Kerr
  • 10,444
  • 2
  • 30
  • 46
钮玉晓
  • 133
  • 1
  • 6
11

Do not put the log4j.properties itself in the classpath, but the directory that contains that file.

Class-Path: lib lib/log4j-1.2.15.jar
Jesper
  • 202,709
  • 46
  • 318
  • 350
  • I've already corrected changing the log4j.properties into the "folder" (where the JAR exists) and change the class-path to ". lib/log4j-1.2.15.jar". Before that I've tried several folder path to "lib" (e.g. /lib/, lib/, ./lib/) and none of them worked. – rnunes Jan 17 '12 at 16:11
  • An old thread, but just want to add that this approach really works. Another good thing about this approach is that a user can actually change the log level if they want to because the config file is outside any jar. – arunskrish Sep 23 '14 at 11:16
1

Add log4j.properties to app.jar.

rodrigoap
  • 7,405
  • 35
  • 46
0

I tried the answer of Jesper, and at first it didn't work. Then I tried with

Class-Path: lib/ lib/log4j-1.2.15.jar

And it worked after that.

emi-le
  • 756
  • 9
  • 26
-1

try to execute:

javar -jar -Dlog4j.configuration=file:"./log4j.properties" app.jar

gonella
  • 186
  • 1
  • 6