我不完全确定“应用程序上下文”与“用户信息”的位置,但我的网络应用程序使用的是 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'、'用户:本已注销'
我希望这有帮助