今天在用idea测试时,发现报了一个错误:Error running ‘Springboot04DataApplicationTests.contextLoads’: Failed to resolve org.junit.platform:junit-platform-launcher:1.8.2如图所示这是因为pom里面需要添加一个依赖,复制下面的代码,粘贴到pom里即可

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>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐