Spring Boot项目中@SpringBootTest测试的时候卡住,一直Resolving Maven dependencies...
Posted 学习笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot项目中@SpringBootTest测试的时候卡住,一直Resolving Maven dependencies...相关的知识,希望对你有一定的参考价值。
问题
用过idea(笔者经常用2018.3.x)创建 spring boot项目的时候默认会创建一个以下骨架的测试代码
package com.atguigu; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class DemoApplicationTests { @Test void contextLoads() { } }
当开发人员第一次尝试测试代码的时候,会下载Junit5依赖jar包,这个时候就卡死一直没有办法后续开发。笔者曾多次遇到这个问题,今天记录一下
最终被迫无奈结束idea进程。
解决办法
重启后在pom.xml添加以下依赖代码
<dependency> <!-- this is needed or IntelliJ gives junit.jar or junit-platform-launcher:1.3.2 not found errors --> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency>
然后重新导入依赖即可。
转载自:https://blog.csdn.net/qiuyeyijian/article/details/104401631
以上是关于Spring Boot项目中@SpringBootTest测试的时候卡住,一直Resolving Maven dependencies...的主要内容,如果未能解决你的问题,请参考以下文章
spring boot整合mybitas怎么配置oracle?
关于spring-boot中mongodb包的一个奇怪的版本问题