1. 程式人生 > >java.util.logging.Logger 使用中關於時間格式的問題

java.util.logging.Logger 使用中關於時間格式的問題

tomcat java

java.util.logging.Logger類可以打印相關日誌信息並將日誌信息寫入日誌文件

tomcat7默認的日誌格式輸出方法是 java.util.logging.SimpleFormatter.format 如: Apr 11, 2018 4:11:48 PM

tomcat8默認的日誌格式輸出方法是 org.apache.juli.OneLineFormatter 如: 12-Apr-2018 15:52:41.446

【logging.properties】,該屬性文件存在於java_home下的 /jre/lib文件夾下,可以修改其中的相關配置

喜歡 “yyyy-MM-dd HH:mm:ss”這樣的時間格式,那就修改屬性文件,添加如下一句:

java.util.logging.SimpleFormatter.format=%1$tF %1$tH:%1$tM:%1$tS %2$s%n%4$s: %5$s%6$s%n

說明:如果沒有這句話,那tomcat7默認使用的SimpleFormatter的format格式是:"%1$tb %1$td, %1$tY %1$tl:%1$tM:%1$tS %1$Tp %2$s%n%4$s: %5$s%6$s%n";

java.util.logging.Logger 使用中關於時間格式的問題