當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring Boot项目@RunWith注解报错
生活随笔
收集整理的這篇文章主要介紹了
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注解报错的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 无线网络摄像头服务器,无线摄像头云服务器
- 下一篇: 关于IDEA调试@RunWith(Spr