vote up 0 vote down star

I wrote a web service project using netbeans 6.7.1 with glassfish v2.1, put log4j.properties to the root dir of project and use

static Logger logger = Logger.getLogger(MyClass.class);

in Constructor: PropertyConfigurator.configure("log4j.properties");

and in functions:

logger.info("..."); logger.error("..."); ...

but, it is error info(actually, I have tried to put it almost every dir that I could realize):

log4j:ERROR Could not read configuration file [log4j.properties]. java.io.FileNotFoundException: log4j.properties (The system cannot find the file specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at java.io.FileInputStream.(FileInputStream.java:66) at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:297) at org.apache.log4j.PropertyConfigurator.configure(PropertyConfigurator.java:315) at com.corp.ors.demo.OrsDemo.main(OrisDemo.java:228) log4j:ERROR Ignoring configuration file [log4j.properties]. log4j:WARN No appenders could be found for logger (com.corp.ors.demo.OrsDemo). log4j:WARN Please initialize the log4j system properly.

the example project could be get from http://www.91files.com/?N3F0QGQPWMDGPBRN0QA8

flag
What is the purpose of the PropertyConfigurator.configure("log4j.properties"); line ? I never use this one. Your log4j.xml file must only be "somewhere" in your classpath. – Antoine Claval Sep 28 at 8:36
Look at stackoverflow.com/questions/1140358/… to find, how the log4j configuration itself is being logged. I Think this should help you alot, because some containers have their own log4j configuration. – dz Sep 29 at 9:27

2 Answers

vote up 2 vote down

You have to put it in the root directory, that corresponds to your execution context.

Example:

    MyProject
       src
           MyClass.java
           log4j.properties

If you start executing from a different project, you need to have that file in the project used for starting the execution. For example, if a different project holds some JUnit tests, it needs to have also its log4j.properties file.


I suggest using log4j.xml instead of the log4j.properties. You have more options, get assistance from your IDE and so on...

link|flag
in example, I almost put it every directory. but it is not helpful to Glassfish deploy project, because GF don't copy properties to the correct directory. It seems GF do lose it. – mono Sep 28 at 10:32
actually, I think the problem is from auto-deploy of netbeans. I try to deploy by war file in admin console, it's ok. I don't know if I was right. If I was right, why netbeans don't deploy these files when auto-deploy the project. – mono Sep 28 at 16:30
vote up 2 vote down

The file should be located in the WEB-INF/classes directory. This directory structure should be packaged within the war file.

link|flag
in theory, it is the answer, but the problem is log4j.properties is losted when glassfish deploy war file. – mono Sep 28 at 10:30
1  
It should be in WEB-INF/classes and packaged within the war file – Martin OConnor Sep 28 at 11:53
@mono - at least in the downloadable archive there is NO log4j.properties in web/WEB-INF/classes. Martin is right, that's where it should be. – fvu Oct 2 at 0:53

Your Answer

Get an OpenID
or

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