在哪里可以找到我的服务器的 JBOSS 部署状态列表?
Where can I find a list of the JBOSS deployment statuses for my Server?
我正在我的 JBOSS 服务器中创建一个应用程序来监视每个部署的状态。我想 return 如果它们都正常则成功,如果其中任何一个失败则失败。但是,我不知道 JBOSS 部署的状态。我似乎无法在网上找到列出部署状态的枚举文档。在哪里可以找到 JBOSS 部署的潜在状态列表?
看看描述管理模型的WildScribe。
The current runtime status of a deployment. Possible status modes are OK, FAILED, and STOPPED. FAILED indicates a dependency is missing or a service could not start. STOPPED indicates that the deployment was not enabled or was manually stopped.
我正在我的 JBOSS 服务器中创建一个应用程序来监视每个部署的状态。我想 return 如果它们都正常则成功,如果其中任何一个失败则失败。但是,我不知道 JBOSS 部署的状态。我似乎无法在网上找到列出部署状态的枚举文档。在哪里可以找到 JBOSS 部署的潜在状态列表?
看看描述管理模型的WildScribe。
The current runtime status of a deployment. Possible status modes are OK, FAILED, and STOPPED. FAILED indicates a dependency is missing or a service could not start. STOPPED indicates that the deployment was not enabled or was manually stopped.