问答详情
源自:3-6 dao层开发

@RunWith(SpringRunner.class)中的SpringRunner.class一直引入不了,各位能帮忙看下么?

@RunWith(SpringRunner.class)中的SpringRunner.class一直引入不了,各位能帮忙看下么?,这些包确定都导入了,但感觉对解决这个问题没作用。。。

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-test</artifactId>
   <scope>test</scope>
</dependency>
<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.10</version>
   <!--<scope>test</scope>-->
</dependency>
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-test</artifactId>
   <version>2.0.3.RELEASE</version>
   <!--<scope>test</scope>-->
</dependency>


提问者:大叔好可爱 2018-07-09 17:11

个回答

  • qq_慕设计8346344
    2020-03-21 11:33:18

    http://img1.mukewang.com/5e758ab400011cb706750309.jpg
    我遇到到的是同样的问题,后来我把新建项目时自带的测试依赖注释,换成下面这个就解决了。

  • 慕雪0411612
    2018-11-23 13:59:23

    找到spring-test.jar,试试SpringRunner.class能不能打开,不行的话就把本地仓库对应的spring-test删掉重新下。我的是这么解决的。

  • 慕瓜9187940
    2018-07-15 09:29:14

    项目上右键->Maven->Reimport,重新导包试试