Springboot 2.3.8.RELEASE升级到2.5.12 Junit报错
Posted Dream_it_possible!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 2.3.8.RELEASE升级到2.5.12 Junit报错相关的知识,希望对你有一定的参考价值。
由于最近Spring的漏洞,Springboot版本需要升级到2.5.12, 更新maven依赖:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.12</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
Junit开始报错:
发现junit-jupiter已经升级到5.7.2:
这个报错是因为junit版本低了, 去掉报错的导包。重新导入Test:
import org.junit.Assert;
import org.junit.jupiter.api.Test;
为了能继续使用Assert 断言, 添加junit版本:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
如果其他三方jar包依赖junit, 建议先将junit exclusion掉, 在dependency 标签里添加exclusions标签:
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
建议使用 mvn dependency:tree 命令查看项目中的依赖树,这样就能找到所有依赖junit的project。
这样能保证整个project使用统一的junit版本, 重新build项目即可。
以上是关于Springboot 2.3.8.RELEASE升级到2.5.12 Junit报错的主要内容,如果未能解决你的问题,请参考以下文章