log4j中,有一个功能configureAndWatch(如下所述),其中在不重新启动应用程序服务器的情况下,可以使用默认延迟来修改日志阈值级别。

org.apache.log4j.xml.DOMConfigurator.configureAndWatch(log4j.xml path);

log4j2中也可能吗?如果是,那如何实现呢?

另外,以下是用于设置和清理log4j设置的代码行。
BasicConfigurator.configure()
BasicConfigurator.resetConfiguration()

如何在log4j2中实现呢?请帮忙。谢谢。

最佳答案

根据Log4j2文档
https://logging.apache.org/log4j/2.x/manual/configuration.html


<?xml version="1.0" encoding="UTF-8"?>
<Configuration monitorInterval="30">
...
</Configuration>

10-05 18:21