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/servlet/UndertowServletWebServerFactoryCustomizer.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ public UndertowServletWebServerFactoryCustomizer(ServerProperties serverProperti
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/servlet/UndertowServletWebServerFactoryCustomizerTests.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,11 @@ class UndertowServletWebServerFactoryCustomizerTests {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java
+27-4Lines changed: 27 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac
91
91
92
92
privateResourceLoaderresourceLoader;
93
93
94
-
privatebooleaneagerInitFilters = true;
94
+
privatebooleaneagerFilterInit = true;
95
95
96
96
privatebooleanpreservePathOnForward = false;
97
97
@@ -248,19 +248,42 @@ public void setResourceLoader(ResourceLoader resourceLoader) {
248
248
* Return if filters should be initialized eagerly.
249
249
* @return {@code true} if filters are initialized eagerly, otherwise {@code false}.
250
250
* @since 2.0.0
251
+
* @deprecated since 2.4.0 in favor of #isEagerFilterInit
251
252
*/
253
+
@Deprecated
252
254
publicbooleanisEagerInitFilters() {
253
-
returnthis.eagerInitFilters;
255
+
returnthis.eagerFilterInit;
254
256
}
255
257
256
258
/**
257
259
* Set whether filters should be initialized eagerly.
258
260
* @param eagerInitFilters {@code true} if filters are initialized eagerly, otherwise
259
261
* {@code false}.
260
262
* @since 2.0.0
263
+
* @deprecated since 2.4.0 in favor of #isEagerFilterInit
0 commit comments