springboot 自动化测试
时间: 2023-11-07 14:02:31 浏览: 81
Spring Boot的自动化测试可以通过使用注解@SpringBootTest来实现。@SpringBootTest注解会自动启动并获取容器中的对象,使得测试过程更加方便。同时,可以使用@Test注解来标注测试方法。
然而,使用@SpringBootTest(classes=XxxApplication.class)的方式会导致测试用例运行时间增加,可能显得笨重。为了解决这个问题,可以使用不同的用法。可以在@SpringBootTest注解中去掉自动装配(不会扫描自动配置类),也不会扫描当前项目中的所有bean。
阅读全文