spring 引导中的 Jetty 自定义格式日志模式
Jetty custom format log pattern in spring boot
我们已将 spring 启动应用程序升级到 2.5,因此码头升级到 9.X
有了这个更新 server.jetty.accesslog.time-zone 不再是 application.property 中的有效条目。
我们需要 IST 中的时区,现在它是 GMT(默认)。知道如何将其设置为 IST。
升级前access.log
0:0:0:0:0:0:0:1 - - [20/Jul/2021:14:31:10 +0530] "POST /hotels/generate/partial/v1/refresh-hotel-tagging HTTP/1.1" 200 7 211960
我试过 server.jetty.accesslog.custom-format= %{dd/MMM/yyyy:HH:mm:ss SSS}t
这给出了:[15/Sep/2021:13:11:47 942]
我们需要像以前一样的日志格式。
这在 CustomRequestLog
的 javadoc 中得到了回答
%{format|timeZone|locale}t
The time that the request was received. Optional parameter in one of the following formats {format}, {format|timeZone} or {format|timeZone|locale}.
Format Parameter: (default format [18/Sep/2011:19:18:28 -0400] where the last number indicates the timezone offset from GMT.)
Must be in a format supported by DateCache
TimeZone Parameter:
Default timeZone GMT
Must be in a format supported by TimeZone.getTimeZone(String)
Locale Parameter:
Default locale Locale.getDefault()
Must be in a format supported by Locale.forLanguageTag(String)
所以在你的格式中使用你想要的时区......
%{dd/MMM/yyyy:HH:mm:ss SSS|IST}t
您还可以选择指定区域设置(这对于指定很有用。例如,如果您决定使用长名称表示月份)
使用 IST + 日语语言环境
%{dd/MMM/yyyy:HH:mm:ss SSS|IST|ja}t
我们已将 spring 启动应用程序升级到 2.5,因此码头升级到 9.X
有了这个更新 server.jetty.accesslog.time-zone 不再是 application.property 中的有效条目。 我们需要 IST 中的时区,现在它是 GMT(默认)。知道如何将其设置为 IST。
升级前access.log
0:0:0:0:0:0:0:1 - - [20/Jul/2021:14:31:10 +0530] "POST /hotels/generate/partial/v1/refresh-hotel-tagging HTTP/1.1" 200 7 211960
我试过 server.jetty.accesslog.custom-format= %{dd/MMM/yyyy:HH:mm:ss SSS}t
这给出了:[15/Sep/2021:13:11:47 942]
我们需要像以前一样的日志格式。
这在 CustomRequestLog
%{format|timeZone|locale}t
The time that the request was received. Optional parameter in one of the following formats {format}, {format|timeZone} or {format|timeZone|locale}.
Format Parameter: (default format [18/Sep/2011:19:18:28 -0400] where the last number indicates the timezone offset from GMT.)
Must be in a format supported by DateCache
TimeZone Parameter:
Default timeZone GMT
Must be in a format supported by TimeZone.getTimeZone(String)
Locale Parameter:
Default locale Locale.getDefault()
Must be in a format supported by Locale.forLanguageTag(String)
所以在你的格式中使用你想要的时区......
%{dd/MMM/yyyy:HH:mm:ss SSS|IST}t
您还可以选择指定区域设置(这对于指定很有用。例如,如果您决定使用长名称表示月份)
使用 IST + 日语语言环境
%{dd/MMM/yyyy:HH:mm:ss SSS|IST|ja}t