【SpringBoot深入浅出系列】SpringBoot之创建测试类
【摘要】 一、引入依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope></dependency> 二、添加测试类打开要添加测试类的代码,使用快捷键 ctrl + shift + t...
一、引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
二、添加测试类
打开要添加测试类的代码,使用快捷键 ctrl + shift + t 或鼠标右键选中“Go To->Test”:
点击【Create New Test…】,默认会在 test 目录下,创建相同包名的测试类(文件名后带Test):
三、编写测试类
测试类必须添加注解 @SpringBootTest,否则无法正常注入 Bean 和 Component:
package com.chaoyue.jwt.utils;
import com.chaoyue.jwt.entity.User;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
//@RunWith(SpringRunner.class)
class JwtUtilsTest {
@Autowired
private JwtUtils jwtUtils;
@Test
public void test() {
// 生成token
User user = new User();
user.setId(1L);
user.setUsername("admin");
user.setPassword("123456");
String token = jwtUtils.generateToken(user);
System.out.println("token:" + token);
}
}
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)