运行maven项目 Process finished with exit code 0
时间: 2023-11-14 14:12:08 浏览: 132
如何在Maven项目中运行JUnit5测试用例实现
5星 · 资源好评率100%
当你使用maven运行项目时,如果控制台显示“Process finished with exit code 0”,这意味着你的项目已经成功运行并且已经停止。这是因为maven在运行完所有的测试用例和构建后会自动停止项目。如果你想让项目一直运行,可以使用以下命令:mvn spring-boot:run -Dspring-boot.run.arguments="--server.port=8080"。这将在8080端口上启动你的应用程序,并且它将一直运行直到你手动停止它。
阅读全文