Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i specified the path of the file, i.e file:///sw/merlot/config/log4j.xml (this is not in a jar), its not taking log4j.xml from that path, instead it's taking the default log4j.xml stored in a jar.

How can i specify that path so that it takes log4j.xml from the specified path, instead taking it from a jar?

share|improve this question
1  
Where do you specify that path? – Péter Török Apr 28 '11 at 9:45
In the code of classpathresource – indira Apr 28 '11 at 10:12
You might want to have a look at the Log4J Default Initialization procedure. I did an answer on this topic here. – FrVaBe Apr 28 '11 at 10:23
Adding code examples will help you get a better answer. – Valdis R Apr 28 '11 at 15:21

2 Answers

up vote 0 down vote accepted
DOMConfigurator.configure("file:///sw/merlot/config/log4j.xml");
Logger log = Logger.getLogger(YourClass.class);
share|improve this answer
will this work ?? ClassPathResource resource = new ClassPathResource("file:/sw/merlot/config/log4j.xml"); – indira Apr 28 '11 at 10:20
I used FileSystemResource.when i used classpathresource it was searching in that class path only.But it was not there in that class path.I used FileSystemResource and this will search the entire file system..thank you all.... – indira May 3 '11 at 9:32

Use

java -Dlog4j.configuration=/home/user/path/to/your/log4j.xml -jar yourJar.jar 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.