在进行SSM单元测试时出现的Could not load TestContextBootstrapper [null]. Specify @BootstrapW错误

错误如下所示:

在进行SSM单元测试时出现的Could not load TestContextBootstrapper [null]. Specify @BootstrapW错误_第1张图片

错误原因是:spring的单元测试依赖的版本问题

解决办法:

修改pom.xml中的依赖如下所示:

<dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-testartifactId>
            <version>5.2.8.RELEASEversion>
dependency>

你可能感兴趣的:(mistakes,单元测试,spring,java,后端,junit)