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
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -1140,6 +1140,28 @@ public void setTrustedProxies(String trustedProxies) {
1140
1140
1141
1141
}
1142
1142
1143
+
/**
1144
+
* When to use APR.
1145
+
*/
1146
+
publicenumUseApr {
1147
+
1148
+
/**
1149
+
* Always use APR and fail if it's not available.
1150
+
*/
1151
+
ALWAYS,
1152
+
1153
+
/**
1154
+
* Use APR if it is available.
1155
+
*/
1156
+
WHEN_AVAILABLE,
1157
+
1158
+
/**
1159
+
* Never user APR.
1160
+
*/
1161
+
NEVER
1162
+
1163
+
}
1164
+
1143
1165
}
1144
1166
1145
1167
/**
@@ -1945,26 +1967,4 @@ public enum ForwardHeadersStrategy {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/TomcatReactiveWebServerFactoryCustomizer.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/TomcatServletWebServerFactoryCustomizer.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java
0 commit comments