码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot项目中@SpringBootTest测试的时候卡住,一直Resolving Maven dependencies...

时间:2020-04-04 20:20:22      阅读:587      评论:0      收藏:0      [点我收藏+]

标签:code   artifact   for   framework   image   测试的   import   errors   src   

问题

用过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...

标签:code   artifact   for   framework   image   测试的   import   errors   src   

原文地址:https://www.cnblogs.com/passedbylove/p/12633575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!