15

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

谁能帮我?

谢谢和最好的问候。

4

2 回答 2

18

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

放在应用程序类路径中的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 的示例包结构;

在此处输入图像描述

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

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

在此处输入图像描述

然后运行,你可以在 D:/temp/log/test.log 下找到你的日志文件

于 2012-08-06T06:28:47.540 回答
2

我希望这会有所帮助......这就是我们在项目中所做的......

A. 将 jar 包含在您的项目中。

B.为记录器定义定义 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>

C. 在类中使用记录器:

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>
于 2012-08-05T11:05:38.453 回答