当通过一个文件加载配置的时候,Log4j
可以自动识别配置文件发生变化,并根据变化重新加载。
如果 configuration
的属性monitorInterval
被设置了一个非0的值,那么Log4j2
会周期性的检查配置文件。
接下来的例子展示了每隔30
秒进行一次检测的例子。(最小的时间间隔是5
秒,不能小于5
)。
<?xml version="1.0" encoding="UTF-8"?> <Configuration monitorInterval="30"> ... </Configuration>
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/99924.html