IDEA: Springboot 项目 install报错:

Posted java李杨勇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA: Springboot 项目 install报错:相关的知识,希望对你有一定的参考价值。

Found multiple occurrences of org.json.JSONObject on the class path:

    jar:file:/C:/Users/Administrator/.m2/repository/org/json/json/20160810/json-20160810.jar!/org/json/JSONObject.class
    jar:file:/C:/Users/Administrator/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar!/org/json/JSONObject.class

You may wish to exclude one of them to ensure predictable runtime behavior

解决方法:

在pom种加入:com.vaadin.external.google依赖忽略即可

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
			<exclusions>
				<exclusion>
					<groupId>org.junit.vintage</groupId>
					<artifactId>junit-vintage-engine</artifactId>
				</exclusion>
				<exclusion>
					<groupId>com.vaadin.external.google</groupId>
					<artifactId>android-json</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

以上是关于IDEA: Springboot 项目 install报错:的主要内容,如果未能解决你的问题,请参考以下文章

IDEA 导入Springboot 项目:

如何用IDEA创建SpringBoot项目

使用 IDEA 创建 SpringBoot 项目(详细介绍)+ 源码案例实现

idea无法创建springboot项目的解决方案

idea创建springboot项目

IDEA搭建spark maven项目的 pom.xml文件配置