【第一步】导入整合的依赖坐标
<!-- spring整合junit5 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.2.10.RELEASE</version>
<scope>test</scope>
</dependency>
【第二步】使用Spring整合JUnit专用的类加载器(不做操作)
【第三步】加载配置文件或配置类
用到两个注解:
@RunWith:junit提供的注解,指定第三方的运行器,第三方运行器由Spring提供
@ContextConfiguration:指定Spring的配置类是哪一个,由它帮助创建容器
@RunWith(SpringJUnit4ClassRunner.class) //junit提供了的注解,指定使用Spring的运行器。
@ContextConfiguration(classes = SpringConfig.class) //指定Spring配置类(配置文件)
public class SpringTest {
@Autowired //从容器中获取对象,并且注入
private BookService bookService;
@Test
public void testFindById() {
//调用接口中方法
Book book = bookService.findById(1);
System.out.println(book);
}
}