You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1261,7 +1261,7 @@ public static class Accesslog {
1261
1261
/**
1262
1262
* Log format.
1263
1263
*/
1264
-
privateFORMATformat = FORMAT.NCSA;
1264
+
privateFormatformat = Format.NCSA;
1265
1265
1266
1266
/**
1267
1267
* Custom log format, see org.eclipse.jetty.server.CustomRequestLog. If
@@ -1302,11 +1302,11 @@ public void setEnabled(boolean enabled) {
1302
1302
this.enabled = enabled;
1303
1303
}
1304
1304
1305
-
publicFORMATgetFormat() {
1305
+
publicFormatgetFormat() {
1306
1306
returnthis.format;
1307
1307
}
1308
1308
1309
-
publicvoidsetFormat(FORMATformat) {
1309
+
publicvoidsetFormat(Formatformat) {
1310
1310
this.format = format;
1311
1311
}
1312
1312
@@ -1361,7 +1361,7 @@ public void setIgnorePaths(List<String> ignorePaths) {
1361
1361
/**
1362
1362
* Log format for Jetty access logs.
1363
1363
*/
1364
-
publicenumFORMAT {
1364
+
publicenumFormat {
1365
1365
1366
1366
/**
1367
1367
* NCSA format, as defined in CustomRequestLog#NCSA_FORMAT.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/JettyWebServerFactoryCustomizer.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2012-2024 the original author or authors.
2
+
* Copyright 2012-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
0 commit comments