Process finished with exit code 0
Posted 简一_hz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Process finished with exit code 0相关的知识,希望对你有一定的参考价值。
使用IntelliJ IDEA 的Spring Assistant新建SpringBoot web工程后,运行项目控制台出现如下提示:
Process finished with exit code 0
程序自动结束进程,没有发现tomcat启动的消息
解决办法:
查看pom.xml文件,发现:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
注释掉<scope>provided</scope>就好了。
如果一个依赖,发布到服务器后服务器本身也有,那么加上scope之后打包时就不会把这个打包进去上传,但是不妨碍自己本地测试.一般用在去除springboot自带的tomcat时候用
最后,我们来看一下scope的几个属性详解:
1.compile:默认值 他表示被依赖项目需要参与当前项目的编译,还有后续的测试,运行周期也参与其中,是一个比较强的依赖。打包的时候通常需要包含进去。
2.test:依赖项目仅仅参与测试相关的工作,包括测试代码的编译和执行,不会被打包,例如:junit。
3.runtime:表示被依赖项目无需参与项目的编译,不过后期的测试和运行周期需要其参与。与compile相比,跳过了编译而已。例如JDBC驱动,适用运行和测试阶段。
4.provided:打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。相当于compile,但是打包阶段做了exclude操作。
5.system:从参与度来说,和provided相同,不过被依赖项不会从maven仓库下载,而是从本地文件系统拿。需要添加systemPath的属性来定义路径。
以上是关于Process finished with exit code 0的主要内容,如果未能解决你的问题,请参考以下文章
Process finished with exit code 0
启动总是提示:Process finished with exit code 0
SpringBoot - Process finished with exit code 0
idea 下flink Process finished with exit code 130