Log4j JPA Appender

时间:2014-05-28 11:38:00

标签: java jpa logging log4j

我正在尝试使用log4j的JPA Appender保存一些日志事件,我已经按照教程 here (JPAAppender)

但是当我测试记录器时,我得到一些关于log4j.properties的log4j错误/警告:

log4j:WARN Continuable parsing error 2 and column 31

log4j:WARN Document root element "Configuration", must match DOCTYPE root "null".

log4j:WARN Continuable parsing error 2 and column 31

log4j:WARN Document is invalid: no grammar found.

log4j:WARN Please initialize the log4j system properly.

假设问题出在log4j.properties文件中,有什么帮助? 感谢。

1 个答案:

答案 0 :(得分:0)

使用JDBC appender解决,我使用命令:

log4j.appender.JDBC.sql = INSERT INTO ....

我只是将请求的参数传递给插入查询,但是我已经配置了持久性。  感谢log4j.MDC

MDC tutorial