文章目录
- 本地测试
- 引入依赖
- 进入StudentMapper右键点击生成
- 项目结构
本地测试
引入依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope>
</dependency>
进入StudentMapper右键点击生成
@SpringBootTest
class StudentMapperTest {@Autowiredprivate StudentService studentService;@Testvoid findAll() {List<Student> students=studentService.findAll();for (Student student : students) {// 处理 student 对象System.out.println(student.toString());}}
}
注解的解释:
@SpringBootTest 注解是 Spring Boot 提供的一个用于测试 Spring Boot 应用程序的注解。它可以用来启动一个完整的 Spring Boot 应用程序上下文,并在该上下文中运行测试用例。