小码问答,有问必答!

java.lang.NoSuchMethodError: org.springframework.test.context.TestContext.computeAttribute

maven项目中添加以下依赖后:   

<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.3.5</version>
            <scope>compile</scope>
</dependency>

执行mvn test测试代码没有问题,直接执行测试方法报错:

java.lang.NoSuchMethodError: org.springframework.test.context.TestContext.computeAttribute

这是什么原因?

JavaEE

收藏

1个回答

我要回答

  • author
    王姐姐 2021-03-29 17:59

    我估计是你除了在pom.xml文件中添加了依赖,还在lib文件夹中直接添加了jar包,导致jar冲突了。