IDEA: Springboot 项目 install报错:

2年前 (2022) 程序员胖胖胖虎阿
189 0 0
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>

版权声明:程序员胖胖胖虎阿 发表于 2022年11月23日 下午5:40。
转载请注明:IDEA: Springboot 项目 install报错: | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...