我是Spring的初学者。我试图找到一个命令来执行使用gradle / maven创建的Java Web项目,但找不到方法。当我点击“在服务器上运行”按钮时,我想做 eclipse 的事情。

例如。在Django中,我要做的就是python3 manage.py runserver

最佳答案

如果您使用的是Spring-boot,则Spring Boot Maven Plugin允许您使用以下命令打包和运行应用程序:



请记住,如上所述,在您的pom.xml中包含spring-boot-maven-plugin。

<build>
  <plugins>
   <plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
   </plugin>
  </plugins>
</build>

阅读Running as a Package Application,了解如何使用Gradle插件运行。
附加资源See here

关于java - 如何通过命令行运行Maven/Gradle Web项目?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51592222/

10-12 02:02