Class ServletWebServerInitializedEvent

All Implemented Interfaces:
Serializable

public class ServletWebServerInitializedEvent extends WebServerInitializedEvent
Event to be published after the WebServer is ready. Useful for obtaining the local port of a running server.

Normally it will have been started, but listeners are free to inspect the server and stop and start it if they want to.

Since:
2.0.0
Author:
Dave Syer
See Also:
  • Constructor Details

  • Method Details

    • getApplicationContext

      public ServletWebServerApplicationContext getApplicationContext()
      Access the application context that the server was created in. Sometimes it is prudent to check that this matches expectations (like being equal to the current context) before acting on the server itself.
      Specified by:
      getApplicationContext in class WebServerInitializedEvent
      Returns:
      the applicationContext that the server was created from