我正在使用log4j 2.0-beta9。我有一个关于SMTP appender的问题。我需要配置主题,来自属性的值和来自属性的值。我正在记录MapMessage,我的配置如下 -
<?xml version="1.0" encoding="UTF-8"?>
<configuration status="DEBUG">
<appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d [%t] %-5p %c - %m%n"/>
</Console>
<SMTP name="Mail" subject="Error Log for ${env:HOSTNAME}" to="${sys:mail.to}" from="${sys:mail.from}"
smtpHost="${sys:mail.host}" smtpPort="${sys:mail.port}" smtpDebug="true" bufferSize="1">
<PatternLayout>
<pattern>%d [%t] %-5p %c - %m%n</pattern>
</PatternLayout>
</SMTP>
<Async name="AsyncMail">
<appender-ref ref="Mail" />
</Async>
</appenders>
<loggers>
<root level="info">
<appender-ref ref="Console"/>
<appender-ref ref="AsyncMail">
<MapFilter onMatch="ACCEPT" onMismatch="DENY">
<KeyValuePair key="throwable.class" value="java.lang.RuntimeException" />
</MapFilter>
</appender-ref>
</root>
</loggers>
</configuration>
// Java Code to log the msg
Throwable throwable; // this is the exception that is thrown by the app.
MapMessage message = new MapMessage();
message.put("throwable.message", throwable.getMessage());
message.put("throwable.class", throwable.getClass().getName());
message.put("throwable.stacktrace", ExceptionUtils.getStackTrace(throwable)); // ExceptionUtils from apache-commons
LOGGER.error(message, throwable); // org.apache.logging.log4j.Logger
问题是这些值都不是动态替换的。有没有办法做到这一点?
提前致谢。
答案 0 :(得分:1)
您需要设置mail.to
和mail.from
系统属性。您遇到的问题可能是您在Servlet 3.0环境中运行,在这种情况下,正在处理之前处理Log4j2.xml文件,以便设置属性的执行。
如果是这种情况,您可以创建一个在web.xml
文件中配置的servlet容器初始化程序,以便在加载Log4j2的servlet容器初始化程序之前加载。