Maven依赖有一个<scope>,因为JUnit是直接添加到路径中,并不是通过Maven依赖加入,如果加入了<scope>会导致匹配不上
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>test</scope> </dependency>
因为在Maven依赖中多了<scope>标签,所以删除之后即可
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
上pom.xml文件中去掉scope标签内容即可。
如下图所示
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。