大叔好可爱
2018-07-09 17:11
@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>
我遇到到的是同样的问题,后来我把新建项目时自带的测试依赖注释,换成下面这个就解决了。
找到spring-test.jar,试试SpringRunner.class能不能打开,不行的话就把本地仓库对应的spring-test删掉重新下。我的是这么解决的。
项目上右键->Maven->Reimport,重新导包试试
SpringBoot+MyBatis搭建迷你小程序
91500 学习 · 621 问题
相似问题