Sprin Boot无RunWith注解解决办法
Posted ez4zzw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sprin Boot无RunWith注解解决办法相关的知识,希望对你有一定的参考价值。
在使用RunWith注解时提示错误,原因是没有导入junit的依赖
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0</version>
</dependency>
以上是关于Sprin Boot无RunWith注解解决办法的主要内容,如果未能解决你的问题,请参考以下文章
关于spring-boot-actuator的httptrace端点不生效问题解决办法