本文主要是介绍Spring Boot项目@RunWith注解报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Spring Boot项目中,新添加test类,使用@RunWith注解报错,肯定是项目中没有添加依赖。
解决办法:
1.pom.xml引入依赖
<!--添加junit环境的jar包-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId>
</dependency>
2.在测试类使用注解,并导入依赖
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;@RunWith(SpringRunner.class)
@SpringBootTest(classes = {CommunityApplication.class})//CommunityApplication是我项目的启动类
public class TestSecurityUtils {@Testpublic void test01() {String password = SecurityUtils.encryptPassword("123456");System.out.println(password);}}
注意:一定要在方法上加上@Test,否则会报错junit:no runnable methods
这篇关于Spring Boot项目@RunWith注解报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!