【发布时间】:2017-12-27 15:44:44
【问题描述】:
我想在 IBM WebSphere Application Server(传统 V8.5 或 Liberty)上托管/运行 RESTHeart。默认情况下,RESTHeart 在 Undertow/JBoss(?) 上运行。
有没有可能这样做?我找不到任何相关信息。
【问题讨论】:
标签: mongodb jboss websphere undertow restheart
我想在 IBM WebSphere Application Server(传统 V8.5 或 Liberty)上托管/运行 RESTHeart。默认情况下,RESTHeart 在 Undertow/JBoss(?) 上运行。
有没有可能这样做?我找不到任何相关信息。
【问题讨论】:
标签: mongodb jboss websphere undertow restheart
你不能。 RESTHeart 是一个普通的 Java 应用程序,它不打算在任何应用程序服务器中运行。它不是在 Undertow/JBoss 中运行,而是 RESTHeart 嵌入 Undertow,以非常有效地处理 HTTP 请求。
RESTHeart 的开发考虑到了微服务架构,因为我们想要一些简单的东西,而不需要在我们的生产环境中运行和管理一个成熟的应用程序服务器。
【讨论】: