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
@@ -1268,7 +1268,7 @@ public static class Accesslog {
1268
1268
/**
1269
1269
* Log format.
1270
1270
*/
1271
-
privateFORMATformat = FORMAT.NCSA;
1271
+
privateFormatformat = Format.NCSA;
1272
1272
1273
1273
/**
1274
1274
* Custom log format, see org.eclipse.jetty.server.CustomRequestLog. If
@@ -1309,11 +1309,11 @@ public void setEnabled(boolean enabled) {
1309
1309
this.enabled = enabled;
1310
1310
}
1311
1311
1312
-
publicFORMATgetFormat() {
1312
+
publicFormatgetFormat() {
1313
1313
returnthis.format;
1314
1314
}
1315
1315
1316
-
publicvoidsetFormat(FORMATformat) {
1316
+
publicvoidsetFormat(Formatformat) {
1317
1317
this.format = format;
1318
1318
}
1319
1319
@@ -1368,7 +1368,7 @@ public void setIgnorePaths(List<String> ignorePaths) {
1368
1368
/**
1369
1369
* Log format for Jetty access logs.
1370
1370
*/
1371
-
publicenumFORMAT {
1371
+
publicenumFormat {
1372
1372
1373
1373
/**
1374
1374
* 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