web-dev-qa-db-ja.com

org.Apache.commons.loggingを使用してログファイルを書き込む

org.Apache.commons.loggingライブラリを使用してファイルにログを書き込む必要があるアプリケーションを書いていますが、開始方法がわかりません。

誰か助けてもらえますか?

感謝をこめて。

14
KhanhQuach

このサンプルを試してください。最初に、このような2つのプロパティファイルが必要です。

commons-logging.propertiesアプリケーションのクラスパスに入れます。このファイルの内容は次のようになります。

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

Jdk14LoggerのほかにLog4jロガーを使用することもできます。2番目のカスタムプロパティファイルが必要です。たとえば、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の下にログファイルが見つかります。

16

これがお役に立てば幸いです...これが私たちのプロジェクトでのやり方です...

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>
2
SiB