Tomcat 日志中的区域设置 <=> Time/Date 格式?

Locale <=> Time/Date format in Tomcat logs?

当从 Eclipse 运行 中连接时,我似乎无法更改 Tomcat 日志中的区域设置/日期格式。它使用 12 小时制,我希望它使用 24 小时制(语言是英语,这已经是我想要的)。到目前为止,这是我尝试过的方法:

如果我从 shell 运行 Tomcat,它通过将 -Duser.language=en -Duser.region=GB 添加到 %JAVA_OPTS% 来按预期工作 bin\catalina.bat - 例如 outlined here - 当然,当它在 Eclipse 中 运行ning 时,这不会影响 Tomcat。 (勘误表:我无法重现这个并且不得不假设我错误地 运行 Tomcat 与 Java 6 而不是 7)

使用的软件: Tomcat 7.0.54, Oracle JDK 1.7.0_60 (64-bit), Windows 8 (64-bit)


更新: 感谢 Java 7 的 Michael-O's answer, I was made aware of a change in Java's locale-resolution。的确,回到 Java 6 解决了我的问题并给了我24 小时制 - 但这对我当前的项目不可行。

我没能用 Java 7 实现同样的效果。据说,您可以 return 通过设置系统 属性 [=28] 到旧的语言环境分辨率=] 到 true,但是 这似乎根本不影响 Tomcat 7 日志中的时间显示 。过了一会儿,我发现 this bug 里面写得很清楚:

(...) we lost the ability to decide on 24hour vs 12hour time depending on the locale, but we gained the ability to override the default format by providing a format string for the java.util.logging.SimpleFormatter.format property in logging.properties.

因此,似乎手动定义此格式字符串是(唯一的?)方法,Michael-O 也建议这样做,所以我接受他的回答。

在研究了 java.util.Formatter's syntax 的疯狂之后,我现在已经解决了这个格式字符串,它需要放在 Tomcat 的启动配置的 VM 选项中:

-Djava.util.logging.SimpleFormatter.format="%1$ty%1$tm%1$td_%1$tH%1$tM%1$tS_%1$tL %4.4s %3$s %5$s %n"

输出:

151003_195915_359 INFO org.apache.coyote.http11.Http11Protocol Starting ProtocolHandler ["http-bio-8080"] 
151003_195915_375 INFO org.apache.coyote.ajp.AjpProtocol Starting ProtocolHandler ["ajp-bio-8009"] 
151003_195915_375 INFO org.apache.catalina.startup.Catalina Server startup in 1280 ms

或者更短,对于 ISO 8601 时间戳使用:

-Djava.util.logging.SimpleFormatter.format="%tFT%<tT.%<tL %4.4s %3$s %5$s %n"

输出:

2015-10-03T19:37:03.703 INFO org.apache.coyote.http11.Http11Protocol Starting ProtocolHandler ["http-bio-8080"] 
2015-10-03T19:37:03.703 INFO org.apache.coyote.ajp.AjpProtocol Starting ProtocolHandler ["ajp-bio-8009"] 
2015-10-03T19:37:03.703 INFO org.apache.catalina.startup.Catalina Server startup in 1189 ms 

您可能已经被 Java 7 中的 this 变化击中了。

我看到的唯一解决方案是 ISO 8601 的自定义格式化程序。

希望您需要更改 catalina.out 中的日期格式。请按如下方式修改您的logging.properties

对于org.apache.juli.OneLineFormatter

java.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
org.apache.juli.OneLineFormatter.timeFormat = yyyy-MM-dd HH:mm:ss

对于java.util.logging.SimpleFormatter

java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
java.util.logging.SimpleFormatter.format = "%4$s: %5$s [%1$tc]%n"