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
I need start a HttpServer and control this server instance stop .
but I can not stop the server
DisposableServer server= HttpServer.create()
.host("localhost")
.port(port)
.handle(this::handle)
.bindNow();
// server started
// curl ... has responsed
server.disposeNow();
// curl ... has responsed too ```
How can I stop the serve ?
please
The text was updated successfully, but these errors were encountered:
I need start a HttpServer and control this server instance stop .
but I can not stop the server
The text was updated successfully, but these errors were encountered: