구성 파일 application.yml에서 tomcat 액세스 로그 로그를 구성하세요:
server: port: 80 tomcat: accesslog: enabled: true directory: D:\Documents\D_代码相关\J_java\sprintboot_study prefix: tomcat_access_log suffix: .log file-date-format: -yyyy-MM-dd pattern: '%{X-Real-IP}i - %{Host}i %t "%r" %{Content-Length}i %s %b %D "%{Referer}i" "%{User-Agent}i" %a "%I" "-"' rotate: true
로그 기록 형식(패턴), 다음 형식을 참조하세요.
nginx log log_format:
log_format main '$http_x_real_ip - $http_host [$time_local] "$request" $request_length ' '$status $body_bytes_sent $request_time "$http_referer" ' '"$http_user_agent" $remote_addr "-" "-" ';
tomcat 액세스 로그 패턴:
pattern: '%{X-Real-IP}i - %{Host}i %t "%r" %{Content-Length}i' '%s %b %D "%{Referer}i"' '"%{User-Agent}i" %a "%I" "-"'
%{X-Real-IP}i: http X-Real_IP %{Host}i: http Host %t: Date and time, in Common Log Format %r: First line of the request (method and request URI) %{Content-Length}i: request length %s: HTTP status code of the response %b: Bytes sent, excluding HTTP headers, or ‘-’ if zero %D: Time taken to process the request, in millis %{Referer}i: http Referer %{User-Agent}i: http User-Agent %a: Remote IP address %I: Current request thread name (can compare later with stacktraces)
위 내용은 SpringBoot가 tomcat access_log 로그를 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!