问题描述:使用maven开发springboot项目练习,测试出现了 java: 程序包org.junit.jupiter.api不存在的问题
问题分析:缺少org.junit.jupiter.api相关的依赖
解决方法:在pom.xml文件中添加以下依赖,或者根据提示信息添加自动添加依赖
方法1:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
方法2:
文章来源:https://www.toymoban.com/news/detail-538922.html
文章来源地址https://www.toymoban.com/news/detail-538922.html
到了这里,关于java: 程序包org.junit.jupiter.api不存在的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!