4

我有一个启用了 log4j 的干净的 tomcat7 安装(根据http://tomcat.apache.org/tomcat-7.0-doc/logging.html#Using_Log4j)。“应用程序级”日志记录确实使用 log4j 配置(我将日志定向到本地系统日志服务器)。如何让我的应用程序access.log也使用 log4j?据我所见,我可以在 AccessLogValve、ExtendedAccessLogValve 和 JDBCAccessLogValve 中进行选择,但其中的一个使我能够登录到 syslog 也不能使用 log4j。

4

3 回答 3

4

log4j-scribe-appender项目包含一个Log4JAccessLogValve,可以让您做到这一点。

于 2014-01-12T21:06:43.243 回答
0

如果您使用 Tomcat 7,则可以通过覆盖此函数来扩展 AccessLogValve:

/**
 * Log the specified message to the log file, switching files if the date
 * has changed since the previous log call.
 *
 * @param message Message to be logged
 */
public void log(String message) {

    rotate();

    /* In case something external rotated the file instead */
    if (checkExists) {
        synchronized (this) {
            if (currentLogFile != null && !currentLogFile.exists()) {
                try {
                    close(false);
                } catch (Throwable e) {
                    ExceptionUtils.handleThrowable(e);
                    log.info(sm.getString("accessLogValve.closeFail"), e);
                }

                /* Make sure date is correct */
                dateStamp = fileDateFormatter.format(
                        new Date(System.currentTimeMillis()));

                open();
            }
        }
    }

    // Log this message
    synchronized(this) {
        if (writer != null) {
            writer.println(message);
            if (!buffered) {
                writer.flush();
            }
        }
    }

}
于 2015-04-14T05:44:44.230 回答
0

这适用于 JDK 日志记录:

package org.apache.plugins;

import java.util.logging.Logger;
import org.apache.catalina.valves.AccessLogValve;

public class AccessLogJdkValve extends AccessLogValve {

    private static Logger jdkLogger = Logger.getLogger(AccessLogJdkValve.class.getName());

    @Override
    public void log(String msg) {
        jdkLogger.info(msg);
    }

    @Override
    protected synchronized void open() {
        // do nothing
    }
}

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>tomcat7-conf</groupId>
    <artifactId>tomcat7-conf</artifactId>
    <version>1.0-RELEASE</version>
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>common-tomcat-maven-plugin</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-catalina</artifactId>
            <version>7.0.12</version>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

只需编译,制作一个 jar,放入副本/usr/share/tomcat7/lib/,然后修改server.xml. 我将它添加到我在 github 上的参考 tomcat7 配置中。

于 2015-12-03T02:44:46.197 回答