首页 > 编程语言 > 详细

使用@ContextConfiguration替换@SpringBootTest

时间:2020-01-05 21:45:37      阅读:532      评论:0      收藏:0      [点我收藏+]

由于springboottest需要初始化上下文,每一次都要好长时间,可以使用其他方法替换它:

测试类如下:

@RunWith(SpringJUnit4ClassRunner.class)
// @WebAppConfiguration omitted on purpose
@ContextConfiguration(classes = WebConfig.class)
public class EmployeeTestWithoutMockMvc {
 
    @Autowired
    private EmployeeController employeeController;
 
    ...
}

 

WebConfig.java类:

@enableautoconfiguration
@enablejparepository
@entityscan("com.baeldung.domain")
@ComponentScan("com.baeldung.web")
public class WebConfig implements WebMvcConfigurer {
    ...
}

 

使用@ContextConfiguration替换@SpringBootTest

原文:https://www.cnblogs.com/nizuimeiabc1/p/12153596.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!