如何使用 Log4J SMTPAppender 动态更改电子邮件主题?
log4j.appender.ERROREMAIL=org.apache.log4j.net.SMTPAppender
log4j.appender.ERROREMAIL.SMTPHost=www.company.com
log4j.appender.ERROREMAIL.Threshold=ERROR
[email protected],[email protected],[email protected]
log4j.appender.ERROREMAIL.From=some.emailaddress.com
log4j.appender.ERROREMAIL.Subject=messagesubject1
我正在使用上面提到的 log4j 属性文件来发送 当我这样做时,
log.error("Error message");
我如何才能使其动态化,以便 消息主题可以根据机器名称(环境名称)动态更改。
例如:
log4j.appender.ERROREMAIL.Subject=messagesubject1, messagesubject2, messagesubject3
我想根据机器名称动态使用主题 1,2 和 3。
任何帮助将不胜感激。 谢谢
log4j.appender.ERROREMAIL=org.apache.log4j.net.SMTPAppender
log4j.appender.ERROREMAIL.SMTPHost=www.company.com
log4j.appender.ERROREMAIL.Threshold=ERROR
[email protected],[email protected],[email protected]
log4j.appender.ERROREMAIL.From=some.emailaddress.com
log4j.appender.ERROREMAIL.Subject=messagesubject1
I am using the above mentioned log4j property file to send
email when I do
log.error("Error message");
How do I be able to make it dynamic so that
the message subject can change dynamically depending upon the machine name(env name).
eg:
log4j.appender.ERROREMAIL.Subject=messagesubject1, messagesubject2, messagesubject3
I want to use subjects 1,2 and 3 dynamically depending upon machine name.
Any help will be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您应该只需要使用主机名变量,例如:
根据您的特定配置和操作系统,您可能需要使用 -Dhostname='machinename' 或 -Dhostname=$HOST 在 statrup 处将此变量提供给您的 JVM
You should just need to make use of the hostname variable something like:
Depending on your paritcular configuration and OS you may need to supply this variable to your JVM at statrup using -Dhostname='machinename' or -Dhostname=$HOST
在下面的代码中,我读出了 log4j.properties 文件,将属性 log4j.appender.ERROREMAIL.Subject 设置为 emailRecipients 并重置log4j 配置。可以在应用程序启动时完成,您只需正确设置 emailRecepients 字符串即可。
In the following piece of code I read out the log4j.properties file, set the property log4j.appender.ERROREMAIL.Subject to emailRecipients and reset the log4j configuration. Could be done at the start of the application, you just need to set the emailRecepients string right.
设置用户名或 ENV 变量
To set a username or over ENV variable
我可以想到 2 个解决方案:
编写自己的记录器,它将使用 SMTPAppender 并以编程方式设置属性。
使用 MDC 放置代码中的动态值。您可以使用
%X
从 log4j.xml 中的 MDC 获取值。前任:
I can think of 2 solutions:
Write your own logger that will use SMTPAppender and set the properties programatically.
Use the MDC to put a dynamic value in your code. You can get values from the MDC in your log4j.xml with the
%X
.ex:
如果我们正在读取属性并添加主题抛出java代码,我们将遇到并发请求问题。
如果第一个用户在发送邮件之前修改了主题并进行了一些其他操作。同时第二个用户添加了不同的主题。第一个用户也获得第二个用户的主题。
if we are reading the properties and adding the subject throw java code we will get concurrent request problem.
if first user modified the subject and doing some other operations before sending the mail. at the same time second user added different subject. first user is also get the second user's subject.