FileHandler 在原始日志被锁定时生成额外的日志文件

FileHandler generate extra logs files when original log is locked

我需要为安装的每个应用程序生成一个日志文件,并且 运行 在 websphere 应用程序服务器 9 上。 我使用 JUL 生成日志文件。我的解决方案是创建一个特定的 Class,它继承自 FileHandler 并通过配置文件设置日志属性。

这是我的代码:

//Read config file
LogManager.getLogManager().readConfiguration(LoggerJUL.class.getResourceAsStream("/Logger.properties"));
//Add handler to logger
Logger.getLogger(clazz)).addHandler(new PersonalFileHandler());

PersonalFileHandler 扩展了 FileHandler,并且在运行时通过 FileHandler class 上的配置方法设置属性。

通过这种方式,我通过应用程序 运行 在 Websphere 上创建了一个日志文件,而没有覆盖服务器日志的目标。

虽然我实现了objective的一部分,但是如果原来的日志文件被锁定,会产生额外的文件,类似这样:testLogs.log.0, testLogs.log.1, testLogs.log.0.1 等 我阅读了许多建议和解决方案,但我无法阻止这个问题。 有什么建议吗?

handlers = com.mucam.xxxx.PersonalFileHandler
# Set the default formatter to be the simple formatter
com.mucam.xxxx.PersonalFileHandler.formatter = java.util.logging.SimpleFormatter
# Write the log files to some file pattern
com.mucam.xxxx.PersonalFileHandler.pattern = C:/Users/pmendez/Documents/Log/testLogs.log
# Limit log file size to 5 Kb
com.mucam.xxxx.PersonalFileHandler.limit = 5000
# Keep 10 log files
com.mucam.xxxx.PersonalFileHandler.count = 10
#Customize the SimpleFormatter output format 
java.util.logging.SimpleFormatter.format = %d{ISO8601} [%t] %-5p %c %x - %m%n
#Append to existing file
com.mucam.xxxx.PersonalFileHandler.append = true

Although I achieve part of the objective, extra files are generated if the original log file is locked, same like this: testLogs.log.0, testLogs.log.1, testLogs.log.0.1, etc. I read many suggestions and solutions, but i can't stop this isue. Any suggestions ?

由于您的计数设置为 10,因此您需要指定 %g 模式来记录生成。

com.mucam.xxxx.PersonalFileHandler.pattern = C:/Users/pmendez/Documents/Log/testLogs%g.log

该模式是绝对路径,因此如果您创建多个文件处理程序,它将 resolve conflicts 通过在末尾附加唯一编号来实现。这是由 %u 模式指定的。因此,如果您想移动整数在文件名中的位置,您可以在模式中指定 %u 标记。

这也意味着您正在创建自定义文件处理程序的多个实例并且它们没有被关闭。如果你想控制文件的数量,你要么需要控制你创建的 PersonalFileHandler 的数量,要么共享对单例 PersonalFileHandler 的引用。否则,您需要确保在创建第二个新的 PersonalFileHandler 之前明确创建 PersonalFileHandler 时明确关闭了该 PersonalFileHandler。

。该行:

Logger.getLogger(clazz).addHandler(new PersonalFileHandler());

除非其他地方的代码已经将该记录器固定在内存中,否则会受到垃圾收集的影响。这会导致创建、锁定和清空日志文件。