Package org.springframework.boot.admin
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
- 
Method SummaryModifier and TypeMethodDescriptiongetProperty(String key) Return the value of the specified key from the applicationEnvironment.booleanSpecify if the application runs in an embedded web container.booleanisReady()Specify if the application has fully started and is now ready.voidshutdown()Shutdown the application.
- 
Method Details- 
isReadyboolean isReady()Specify if the application has fully started and is now ready.- Returns:
- trueif the application is ready
- See Also:
 
- 
isEmbeddedWebApplicationboolean isEmbeddedWebApplication()Specify if the application runs in an embedded web container. Returnfalseon a web application that hasn't fully started yet, so it is preferable to wait for the application to beready.- Returns:
- trueif the application runs in an embedded web container
- See Also:
 
- 
getPropertyReturn the value of the specified key from the applicationEnvironment.- Parameters:
- key- the property key
- Returns:
- the property value or nullif it does not exist
 
- 
shutdownvoid shutdown()Shutdown the application.- See Also:
- 
- ConfigurableApplicationContext.close()
 
 
 
-