在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 {
...
}