Ich habe ein Webdienstprojekt mit netbeans 6.7.1 mit glassfish v2.1 geschrieben, log4j.properties in das Stammverzeichnis des Projekts gestellt und Folgendes verwendet:
static Logger logger = Logger.getLogger(MyClass.class);
im Konstruktor:
PropertyConfigurator.configure("log4j.properties");
und in Funktionen:
logger.info("...");
logger.error("...");
// ...
aber es ist eine Fehlerinformation (eigentlich habe ich versucht, fast jedes Verzeichnis zu schreiben, das ich realisieren konnte):
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.<init>(FileInputStream.java:106)
at java.io.FileInputStream.<init>(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.
Das Beispielprojekt kann von http://www.91files.com/?N3F0QGQPWMDGPBRN0QA8 abgerufen werden