我在GlassFish 4上使用java.util.logging。
我正在定义自己的类,通过定义System属性来初始化LogManager
:
-Djava.util.logging.config.class
。
我的类加载logging.properties
文件,将其与其他属性文件合并,并进行一些自定义替换。
以下是我的logging.properties
文件的相关部分:
java.util.logging.FileHandler.pattern=C:/Work/server/glassfish/domains/domain1/logs/JMSFileHandler%g.log
java.util.logging.FileHandler.limit=2000000
java.util.logging.FileHandler.count=20
java.util.logging.FileHandler.append=true
java.util.logging.FileHandler.level=ALL
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
java.util.logging.SimpleFormatter.format=%1$tY:%1$tm:%1$td %1$tH:%1$tM:%1$tS|%4$s: %2$s%n%5$s%n%6$s%n
我正在使用标准FileHandler
并将其配置为使用SimpleFormatter
作为格式化程序。
但是java.util.logging.SimpleFormatter.format
字符串被完全忽略了。相反,SimpleFormatter使用其默认格式。
我哪里出错了?
答案 0 :(得分:2)
从SimpleFormatter文档中您必须测试以下条件:
以下是您可以在GlassFish下转换和运行的示例测试用例。
public static void main(String[] args) throws Exception {
final String format = "%1$tY:%1$tm:%1$td %1$tH:%1$tM:%1$tS|%4$s: %2$s%n%5$s%n%6$s%n";
final String key = "java.util.logging.SimpleFormatter.format";
test(format);
test(System.getProperty(key, format));
test(LogManager.getLogManager().getProperty(key));
FileHandler f = new FileHandler();
System.out.println(f.getFormatter());
f.close();
}
private static void test(String format) {
LogRecord record = new LogRecord(Level.INFO, "");
System.out.println(String.format(format,
new java.util.Date(record.getMillis()),
record.getSourceClassName(),
record.getLoggerName(),
record.getLevel().getLocalizedName(),
record.getMessage(),
String.valueOf(record.getThrown())));
}
您还需要检查GlassFish是否用' com.sun.enterprise.server.logging.UniformLogFormatter'替换了您的SimpleFormatter。
private static void findFormatters() {
final ArrayList<Handler> handlers = new ArrayList<>();
final LogManager manager = LogManager.getLogManager();
synchronized (manager) {
final Enumeration<String> e = manager.getLoggerNames();
while (e.hasMoreElements()) {
final Logger l = manager.getLogger(e.nextElement());
if (l != null) {
Collections.addAll(handlers, l.getHandlers());
}
}
}
for (Handler h : handlers) {
Formatter f = h.getFormatter();
System.out.println(h.getClass().getName() + "=" + (f == null ? "" : f.getClass().getName()));
}
}
如果您需要在设置系统属性时检查访问权限,则可以安装带有-Djava.security.debug=access,stack选项的安全管理器,以便在设置属性时进行跟踪。
答案 1 :(得分:1)
我假设GF从一开始就设置了系统属性java.util.logging.config.file
。事实并非如此。
经过一番调查后,我意识到LogManager
被初始化了两次。在第一次存在属性时,它第二次存在。
我在第一次初始化时遇到错误,因为我指望该属性,因此我没有正确初始化LogManager
,导致SimpleFormatter
使用默认格式。 / p>
我通过更改我的代码并且不再指望该System属性来修复此问题。这解决了这个问题。
GF仍会稍后设置系统属性java.util.logging.config.file
。
答案 2 :(得分:0)
我有类似的问题,但它是固定的。我从Ant build.xml运行我的代码,而我的代码 虽然读取并应用了其他属性,但我的myLogging.properties文件中未应用java.util.logging.FileHandler.formatter.format属性。
您使用的是JRE版本吗? 32年6月1日? Java Bug 55052表示未从属性文件中正确读取java.util.logging.FileHandler.formatter.format属性,并将其应用于早期版本的JRE。
请参阅:https://issues.apache.org/bugzilla/show_bug.cgi?id=55052
我仍然使用JDK 1.6.24编译该项目,但是使用JDK 1.7.0.6运行它,格式化正确读取并应用于我的记录器。