當(dāng)前位置:
首頁(yè) >
前端技术
> javascript
>内容正文
javascript
Spring Boot项目@RunWith注解报错
生活随笔
收集整理的這篇文章主要介紹了
Spring Boot项目@RunWith注解报错
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
Spring Boot項(xiàng)目中,新添加test類,使用@RunWith注解報(bào)錯(cuò),肯定是項(xiàng)目中沒(méi)有添加依賴。
?解決辦法:
????????1.pom.xml引入依賴
<!--添加junit環(huán)境的jar包--> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId> </dependency>? ? ? ? 2.在測(cè)試類使用注解,并導(dǎo)入依賴
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是我項(xiàng)目的啟動(dòng)類 public class TestSecurityUtils {@Testpublic void test01() {String password = SecurityUtils.encryptPassword("123456");System.out.println(password);}}注意:一定要在方法上加上@Test,否則會(huì)報(bào)錯(cuò)junit:no runnable methods?
總結(jié)
以上是生活随笔為你收集整理的Spring Boot项目@RunWith注解报错的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 无线网络摄像头服务器,无线摄像头云服务器
- 下一篇: PyQt(Python+Qt)学习随笔: