大家好,又见面了,我是你们的朋友全栈君。
Spring boot
降低了我们对spring开发的难度 采用了大量在的自动配置,我们只需要进行简单的基本配置,就能快速开发一个spring应用。同样spring对于单元测试也有场景启动器
—-spring-boot-starter-test
,可以让我们在,spring环境下进行测试。
@RunWith(value = SpringRunner.class)
//@SpringBootTest(classes = SearchApplication9007Test.class) //错误写法 ,这个class应该填写的是你的主启动类,
//而不是你的测试类。以为之前用的稍微高点的版本,可以省略这个括
//号内的配置。但是这个版本需要配置
@SpringBootTest(classes = SearchApplication9007.class) //正确写法 ,应该填入主配置类
public class SearchApplication9007Test{
@Autowired
private ElasticsearchTemplate elasticsearchTemplate;
/**
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/142777.html原文链接:https://javaforall.cn