测试项目中警告:Found multiple occurrences of org.json.JSONObject on the class path

本文解决了一个在Spring Boot项目中遇到的问题,即因spring-boot-starter-test引入了多个版本的JSONObject导致的Maven警告。通过在pom.xml中排除特定的依赖项,成功消除了警告。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

这个问题有大神已解决
我报的是警告消息,

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

	jar:file:/D:/apache-maven-3.6/testsoft/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar!/org/json/JSONObject.class
jar:file:/D:/apache-maven-3.6/testsoft/org/json/json/20170516/json-20170516.jar!/org/json/JSONObject.class

原因是在spring-boot-starter-test拉入“ android-json”(com.vaadin.external.google)
解决方法是:
在pom文件中 把对应的jar包依赖忽略掉即可

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

参考博文(此文章后边的链接==》大神们的解释)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值