0

我有一个在 spring 框架上运行并使用 log4j 进行日志记录的 j2ee Web 应用程序。我的 log4j.properties 文件中有这一行。这将在我的数据库中插入日志。如何在消息部分设置动态值,以便以某种方式附加当前登录的用户。包含当前用户信息的 bean 对象位于应用程序上下文中。

log4j.appender.dbLog.sql = INSERT INTO LOGGING (log_date, log_level, location, message) VALUES ('%d{yyyy/MM/dd HH:mm:ss}', '%-5p', '%C-% L', '%m')

4

2 回答 2

2

您想使用MDC(映射诊断上下文)。这是一个关于将它与 servlet 一起使用的链接。

于 2010-03-23T08:43:22.873 回答
1

我不完全确定“应用程序上下文”与“用户信息”的位置,但我的网络应用程序使用的是 Struts 和 log4j,我有类似(但可能更简单)的要求,我用这样的代码解决了它:

public class LogoutAction extends org.apache.struts.action.Action {

private Log log_db = LogFactory.getLog("mysql");

public ActionForward execute(ActionMapping mapping, ActionForm form,
        HttpServletRequest request, HttpServletResponse response)
        throws Exception {

    log_db.debug("User: "+request.getRemoteUser()+" logged off");
    request.getSession().invalidate();
    your
}

}

然后在我的 log4j 属性文件中,我有一个这样的条目:

log4j.logger.mysql=DEBUG, mysql
log4j.appender.mysql=org.apache.log4j.jdbc.JDBCAppender
log4j.appender.mysql.layout=org.apache.log4j.PatternLayout
log4j.appender.mysql.URL=jdbc:mysql://localhost:3306/dbname?autoReconnect=true
log4j.appender.mysql.driver=com.mysql.jdbc.Driver
log4j.appender.mysql.user=user
log4j.appender.mysql.password=password
log4j.appender.mysql.sql=INSERT INTO log (Date, Logger, Priority, Message) VALUES ("%d","%c","%p","%m")
enter code here

然后结果是我的表格行会有这样的数据:

'2010-03-15 21:49:46,514'、'mysql'、'DEBUG'、'用户:本已注销'

我希望这有帮助

于 2010-03-23T11:21:50.053 回答