错误积累
环境及工具
1.idea2018软件工具
2.springBoot开发环境
问题日志:
今天想看看spring得mapper底层代理得实现结果测试报错具体如下。
报错如下
这是报的错误
看了一下maven配置很正常,但是还是没用。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
加上这个依赖,就可以正常测试。
<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>
版权声明:本文为weixin_45637920原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。