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-22
Original file line number
Diff line number
Diff line change
@@ -1132,6 +1132,28 @@ public void setTrustedProxies(String trustedProxies) {
1132
1132
1133
1133
}
1134
1134
1135
+
/**
1136
+
* When to use APR.
1137
+
*/
1138
+
publicenumUseApr {
1139
+
1140
+
/**
1141
+
* Always use APR and fail if it's not available.
1142
+
*/
1143
+
ALWAYS,
1144
+
1145
+
/**
1146
+
* Use APR if it is available.
1147
+
*/
1148
+
WHEN_AVAILABLE,
1149
+
1150
+
/**
1151
+
* Never user APR.
1152
+
*/
1153
+
NEVER
1154
+
1155
+
}
1156
+
1135
1157
}
1136
1158
1137
1159
/**
@@ -1937,26 +1959,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