SpringBoot: 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的属性来定义路径。
上一篇: java中定义常量方法介绍
推荐阅读
-
SpringBoot Process finished with exit code 0
-
SpringBoot: Process finished with exit code 0
-
Process finished with exit code -1073741571 (0xC00000FD)的解决方案
-
SpringBoot - Process finished with exit code 0
-
Tensorflow中Process finished with exit code -1073741819 (0xC0000005)的一种解决方案
-
#Process finished with exit code -1 问题处理
-
odoo Windows10启动debug模式报错(Process finished with exit code -1073740940 (0xC0000374))
-
#Process finished with exit code -1 问题处理
-
pyqt5,pycharm,Process finished with exit code -1073741819 (0xC0000005)
-
Android Emulator Process finished with exit code -1073741515 (0xC0000135)