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
FEAT - Add public getUndertow method to UndertowWebServer
- getUndertow() to UndertowWebServer will be null until the server has been started. Issue #3016 would enable getUndertow() to behave in a similar way to getTomcat() on TomcatWebServer.
#39839
Signed-off-by: Jakob Wanger <[email protected]>
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowWebServer.java
+8
Original file line number
Diff line number
Diff line change
@@ -298,6 +298,14 @@ public int getPort() {
298
298
returnports.get(0).getNumber();
299
299
}
300
300
301
+
/**
302
+
* @return undertow. Note, the return value will be null until the server has been
0 commit comments