@DataJpaTest相当于elasticsearch

时间:2016-10-07 15:53:22

标签: java spring elasticsearch spring-boot

在Spring Boot中,我们可以通过使用@DataJpaTest注释测试用例来测试应用程序的Spring Data JPA切片。

是否存在测试弹性搜索切片的等价物?

@DataJpaTest看起来像这样。也许可以创建@DataElasticsearchTest注释?

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@BootstrapWith(SpringBootTestContextBootstrapper.class)
@OverrideAutoConfiguration(enabled = false)
@TypeExcludeFilters(DataJpaTypeExcludeFilter.class)
@Transactional
@AutoConfigureCache
@AutoConfigureDataJpa
@AutoConfigureTestDatabase
@AutoConfigureTestEntityManager
@ImportAutoConfiguration
public @interface DataJpaTest {
    ...
}

0 个答案:

没有答案