运行 start.microprofile.io Netbeans 11.1 演示

Running start.microprofile.io demo on Netbeans 11.1

我是微服务领域的新手。我已经阅读了很多资料,但仍然无法 运行 我的第一个应用程序。 因此,我使用以下配置从 https://start.microprofile.io 生成了一个演示:

微档案版本:MP2.1 MicroProfile 服务器:Payara Micro 所有 8 个规格。

我能够在 netbeans 11.1 中导入演示,并且我已经安装了 Payara full 191。

我的问题是:下一步是什么?我应该如何处理 运行 演示? 对使用 Eclipse MicroProfile 更接近微服务世界有什么帮助吗?

start.microprofile.io 将为您创建一个 Maven 项目。

在项目的根目录中,应该有一个 readme.md 文件来解释您所创建的内容。

您可以使用 mvn clean package 构建项目,然后使用 java -jar target/demo-microbundle.jar 运行 构建项目(名称 demo 可能会根据您的项目名称而改变)。

然后您可以转到 http://localhost:8080/index.html

访问示例应用

由于这是一个 microprofile 应用程序,您不一定需要将其完整部署到 Payara。您可以 运行 此应用程序作为独立的 jar。