问题描述:没有其他任何错误日志,只有Process finished with exit code 1

问题原因:Maven POM.xml问题造成

由于是properties是我直接从其他项目中拷贝过来没有做处理,造成依赖混乱,导致项目启动失败

<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version>

   ~~<commons-codec.version>1.10</commons-codec.version>~~
  ~~<jjwt.version>0.7.0</jjwt.version>~~
  ~~<codehaus-jackson.version>1.9.13</codehaus-jackson.version>~~
  ~~<mybatis-starter-version>1.2.0</mybatis-starter-version>~~
  ~~<mybatis.plus.version>2.0.7</mybatis.plus.version>~~
  ~~<druid.version>1.0.29</druid.version>~~
  ~~<mapper.version>3.4.0</mapper.version>~~
  ~~<springframework.version>4.3.8.RELEASE</springframework.version>~~
  ~~<paascloud.security.version>1.0</paascloud.security.version>~~
  ~~<saascloud.version>1.0-SNAPSHOT</saascloud.version>~~
  ~~<elastic-job.version>2.1.5</elastic-job.version>~~
  ~~<curator.version>2.10.0</curator.version>~~
  ~~<mysql.version>5.1.39</mysql.version>~~
  ~~<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>~~
  ~~<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>~~
  <maven-source-plugin.version>3.0.1</maven-source-plugin.version>~~
  <guava.version>17.0</guava.version>
  ~~<~~boot.admin.version>1.5.7</boot.admin.version>~~
  ~~<httpclientutil.version>1.0</httpclientutil.version>~~
  ~~<feign.form.spring.version>3.0.3</feign.form.spring.version>~~
  ~~~~<spring.version>4.3.11.RELEASE</spring.version>~~~~
  ~~<fastjson.version>1.2.29</fastjson.version>~~
  ~~<modelmapper.version>1.1.2</modelmapper.version>~~
  <rocketmq.version>4.1.0-incubating</rocketmq.version>~~
</properties>
<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>${guava.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>fastjson</artifactId>
  <version>1.2.58</version>
</dependency>

properties 中定义的version和dependency中的version冲突造成

SpringBoot Idea 启动报错 Process finished with exit code 1的更多相关文章

  1. [idea] - 项目启动报错Process finished with exit code 1

    今天运行项目发现一个bug, "C:\Program Files\Java\jdk1.8.0_191\bin\java.exe" -XX:TieredStopAtLevel=1 - ...

  2. [报错] Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

    今天下午做python的作业,我用PyQt5 中 利用QWebEngineView打开外部网页. 但是一直闪退,一运行就闪退. 显示报错:Process finished with exit code ...

  3. python 运行报错 Process finished with exit code -1073741819 (0xC0000005)

    发现是由于openpyxl模块导致的,去掉这个模块的内容就能运行,import openpyxl就运行不起来, 将openpyxl卸载了重装, 以及更换了不同的openpyxl版本,都不行,还是运行不 ...

  4. SpringBoot启动异常 Process finished with exit code 1

    记录一下一个报错 : < Springboot项目启动之后直接 Process finished with exit code 1 1. 是否有spring-boot-starter-web依赖 ...

  5. odoo Windows10启动debug模式报错(Process finished with exit code -1073740940 (0xC0000374))

    之前用win10系统,安装odoo总是启动debug模式启动不起来很恼火. 报错问题:Process finished with exit code -1073740940 (0xC0000374) ...

  6. SpringBoot项目启动报错:java.lang.RuntimeException: java.lang.reflect.InvocationTargetException

    .   ____          _            __ _ _ /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \( ( )\___ | '_ | '_| | ...

  7. pycharm报错:Process finished with exit code -1073741819 (0xC0000005)解决办法

    这个是几个月前的问题了,有小伙伴在CSDN问我咋解决的,那我今天在这边把这个问题解决办法分享下吧,免得大家把很多时间都浪费在安装排坑上面,有些坑虽然解决了还真不知道啥原因. 我的pycharm一直用的 ...

  8. springboot测试启动报错java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test

    springboot测试启动报错: java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you ne ...

  9. springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde

    springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde 创建 ...

随机推荐

  1. 队列 LinkedBlockingQueue

    1 api     java.util.concurrent包下的新类.LinkedBlockingQueue就是其中之一,是一个阻塞的线程安全的队列,底层采用链表实现.             Li ...

  2. 所有iOS设备的屏幕分辨率

     iPhone设备 物理分辨率是硬件所支持的,逻辑分辨率是软件可以达到的. 代数 设备 操作系统 逻辑分辨率(point) 物理分辨率(pixel) 屏幕尺寸(对角线长度) 缩放因子   iPhone ...

  3. UITableView中的dequeueReusableCellWithIdentifier的方法

    在使用UITableView控件的时候,datasource的代理方法经常会使用到下面的方法来加载UITableView的数据显示 - (UITableViewCell *)tableView:(UI ...

  4. django使用类做业务逻辑

    在django中一般定义一个带有request参数的函数用来处理url,但是更推荐用类做 从django.views.generic.base 导入的views有get,post等各种函数,用来处理对 ...

  5. README.md文档

    大标题 =================================== 大标题一般显示工程名,类似html的\<h1\> 你只要在标题下面跟上=====即可 中标题 ------- ...

  6. http://blog.csdn.net/emoven/article/details/12999265

    http://blog.csdn.net/emoven/article/details/12999265

  7. leetcode题解:Search for a Range (已排序数组范围查找)

    题目: Given a sorted array of integers, find the starting and ending position of a given target value. ...

  8. hive 导入csv文件

    创建hive表: create table table_name( id string, name string, age string ) row format serde 'org.apache. ...

  9. 资深程序员教你如何实现API自动化测试平台!附项目源码!

    原文链接: 1.平时测试接口,总是现写代码,对测试用例的管理,以及测试报告的管理持久化做的不够, 2.工作中移动端开发和后端开发总是不能并行进行,需要一个mock的依赖来让他们并行开发. 3.同时让自 ...

  10. ContentProvider之通过ContentResolver获取图像、视频、音频举例

    MediaStore中定义了一系列的数据表格,通过ContentResolver提供的查询接口,我们能够得到各种须要的媒体信息.通过下面两个URI能够扫描设备外部和内部的媒体文件.Android系统提 ...