使用org.apache.commons.logging写日志文件

时间:2012-08-05 10:21:04

标签: java apache-commons-logging

我正在编写一个应用程序,我需要使用org.apache.commons.logging库将日志写入文件,但我不知道如何启动。

任何人都可以帮助我吗?

谢谢&最好的问候。

2 个答案:

答案 0 :(得分:16)

试试这个样本,首先你需要两个像这样的属性文件;

放在应用程序类路径中的

commons-logging.properties 。该文件的内容应如下所示:

    org.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger

除了Jdk14Logger之外,您还可以使用Log4j记录器。需要第二个自定义属性文件。例如 log-config.properties 如下所示:

    # The following creates two handlers
    handlers=java.util.logging.ConsoleHandler, java.util.logging.FileHandler
    # Set the default logging level for the root logger
    .level=SEVERE
    # log level for the "com.example" package
    sample.logging.level=FINE
    # Set the default logging level
    java.util.logging.ConsoleHandler.level=ALL
    java.util.logging.FileHandler.level=FINE
    # Set the default formatter
    java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
    java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
    # Specify the location and name of the log file
    java.util.logging.FileHandler.pattern=D:/temp/log/test.log

这是样本测试类

     public class TestLog {

     private static Log log = LogFactory.getLog(TestLog.class);
     public static void main(String[] args) {
          log.info("Testing Info Message.");
              if (log.isDebugEnabled()) {
                  log.debug("Testing Debug Message.");
          }
        }
     }

这是使用eclipse的示例包结构;

enter image description here

并在VM参数下添加TestLog类的编辑配置,如下所示;

  -Djava.util.logging.config.file=/D:/dev/workspace/LoggingTest/bin/log-config.properties(your properties file path)

enter image description here

然后运行,您可以在D:/temp/log/test.log

下找到您的日志文件

答案 1 :(得分:2)

我希望这有帮助......这就是我们在项目中的表现......

一个。在项目中包含jar。

B中。为loggers定义log4j.xml定义类似这样......

<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">

    <appender name="FILE" class="org.jboss.logging.appender.RollingFileAppender">
    <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
    <param name="File" value="${jboss.server.log.dir}/server.log"/>
    <param name="Append" value="false"/>
    <param name="MaxFileSize" value="1048576KB"/>
    <param name="MaxBackupIndex" value="3"/>

 <layout class="org.apache.log4j.PatternLayout">
   <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
 </layout>      
</appender>

<root>
   <appender-ref ref="CONSOLE"/>
   <appender-ref ref="FILE"/>
</root>

</log4j:configuration>

℃。使用班级中的记录器:

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

Class YourClass{
    private static Log log = LogFactory.getLog(YourClass.class);

    public void yourMethod(){
        log.info("Your Message");
    }
}

编辑: D.因为我们有一个JBoss AS环境所以应用程序配置为读取log4j.xml,如下所示(你需要一个等效的配置):

<mbean code="org.jboss.logging.Log4jService"
  name="jboss.system:type=Log4jService,service=Logging"
  xmbean-dd="resource:xmdesc/Log4jService-xmbean.xml">
  <attribute name="ConfigurationURL">resource:jboss-log4j.xml</attribute>
  <!-- Set the org.apache.log4j.helpers.LogLog.setQuiteMode. As of log4j1.2.8
  this needs to be set to avoid a possible deadlock on exception at the
  appender level. See bug#696819.
  -->
  <attribute name="Log4jQuietMode">true</attribute>
  <!-- How frequently in seconds the ConfigurationURL is checked for changes -->
  <attribute name="RefreshPeriod">60</attribute>
</mbean>