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