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-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/ReactiveManagementChildContextConfiguration.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/ManagementServerProperties.java
+46-3
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@
30
30
* @author Dave Syer
31
31
* @author Stephane Nicoll
32
32
* @author Vedran Pavic
33
+
* @author Moritz Halbritter
33
34
* @since 2.0.0
34
35
* @see ServerProperties
35
36
*/
@@ -57,7 +58,11 @@ public class ManagementServerProperties {
57
58
@NestedConfigurationProperty
58
59
privateSslssl;
59
60
60
-
privatefinalAccesslogaccesslog = newAccesslog();
61
+
privatefinalJettyjetty = newJetty();
62
+
63
+
privatefinalTomcattomcat = newTomcat();
64
+
65
+
privatefinalUndertowundertow = newUndertow();
61
66
62
67
/**
63
68
* Returns the management port or {@code null} if the
@@ -103,6 +108,18 @@ public void setSsl(Ssl ssl) {
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/ServletManagementChildContextConfiguration.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/web/server/ManagementServerPropertiesTests.java
0 commit comments