无法通过 IntelliJ Idea 运行 tomcat 上的服务

Not able to run a service on tomcat via IntelliJ Idea

我正在开发一个框架 "beadledom"。 我对IntelliJ Idea也比较陌生,之前用过eclipse,beadledom框架包含项目子模块, api 服务 客户 在 Eclipse 中,如果我们想要 运行 服务,我会右键单击服务器上的 "service" 子模块 运行 -> tomcat ;它会 运行。 我的网络应用程序存储在 "service" 文件夹中。

我不知道如何在 IntelliJ 上执行此操作

我确实设置了 运行 配置。 我被要求在编辑配置>Tomcat 中创建一个 "artifact" enter image description here

artifact is an archive, built from your project sources which constitutes your application. For Java EE web projects it is usually a war achrive which you deploy to an application server (e.g. Tomcat). In case of a Maven-based poject IntelliJ IDEA automatically creates web artifact, based on Maven pom.xml configuration which then you can select to deploy in Tomcat Run/Debug Configuration部署选项卡。

您可以查看 Developing a Java EE Application 教程,了解 IntelliJ IDEA 中基于 JavaEE 的项目的一般工作流程。