Interface SpringApplicationAdminMXBean


public interface SpringApplicationAdminMXBean
An MBean contract to control and monitor a running SpringApplication over JMX. Intended for internal use only.
Since:
1.3.0
Author:
Stephane Nicoll
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Return the value of the specified key from the application Environment.
    boolean
    Specify if the application runs in an embedded web container.
    boolean
    Specify if the application has fully started and is now ready.
    void
    Shutdown the application.
  • Method Details Link icon

    • isReady Link icon

      boolean isReady()
      Specify if the application has fully started and is now ready.
      Returns:
      true if the application is ready
      See Also:
    • isEmbeddedWebApplication Link icon

      boolean isEmbeddedWebApplication()
      Specify if the application runs in an embedded web container. Return false on a web application that hasn't fully started yet, so it is preferable to wait for the application to be ready.
      Returns:
      true if the application runs in an embedded web container
      See Also:
    • getProperty Link icon

      String getProperty(String key)
      Return the value of the specified key from the application Environment.
      Parameters:
      key - the property key
      Returns:
      the property value or null if it does not exist
    • shutdown Link icon

      void shutdown()
      Shutdown the application.
      See Also: