mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-06-29 15:22:11 +00:00
DATAES-723 - Cleanup ElasticsearchRepository interface.
Original PR: #373
This commit is contained in:
parent
0d272fe9bf
commit
16e0f566cd
@ -327,8 +327,13 @@ class RequestFactory {
|
||||
public MoreLikeThisQueryBuilder moreLikeThisQueryBuilder(MoreLikeThisQuery query, IndexCoordinates index) {
|
||||
MoreLikeThisQueryBuilder.Item item = new MoreLikeThisQueryBuilder.Item(index.getIndexName(), query.getId());
|
||||
|
||||
MoreLikeThisQueryBuilder moreLikeThisQueryBuilder = QueryBuilders
|
||||
.moreLikeThisQuery(new MoreLikeThisQueryBuilder.Item[] { item });
|
||||
String[] fields = null;
|
||||
if (query.getFields() != null) {
|
||||
fields = query.getFields().toArray(new String[] {});
|
||||
}
|
||||
|
||||
MoreLikeThisQueryBuilder moreLikeThisQueryBuilder = QueryBuilders.moreLikeThisQuery(fields, null,
|
||||
new MoreLikeThisQueryBuilder.Item[] { item });
|
||||
|
||||
if (query.getMinTermFreq() != null) {
|
||||
moreLikeThisQueryBuilder.minTermFreq(query.getMinTermFreq());
|
||||
@ -361,6 +366,7 @@ class RequestFactory {
|
||||
if (query.getBoostTerms() != null) {
|
||||
moreLikeThisQueryBuilder.boostTerms(query.getBoostTerms());
|
||||
}
|
||||
|
||||
return moreLikeThisQueryBuilder;
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2013-2019 the original author or authors.
|
||||
* Copyright 2013-2020 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@ -25,8 +25,9 @@ import org.springframework.data.repository.PagingAndSortingRepository;
|
||||
* @author Mohsin Husen
|
||||
* @author Oliver Gierke
|
||||
* @author Sascha Woo
|
||||
* @author Peter-Josef Meisch
|
||||
* @deprecated since 4.0, use {@link ElasticsearchRepository} instead
|
||||
*/
|
||||
@Deprecated
|
||||
@NoRepositoryBean
|
||||
public interface ElasticsearchCrudRepository<T, ID> extends PagingAndSortingRepository<T, ID> {
|
||||
|
||||
}
|
||||
public interface ElasticsearchCrudRepository<T, ID> extends PagingAndSortingRepository<T, ID> {}
|
||||
|
@ -18,8 +18,11 @@ package org.springframework.data.elasticsearch.repository;
|
||||
import org.elasticsearch.index.query.QueryBuilder;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.elasticsearch.core.IndexOperations;
|
||||
import org.springframework.data.elasticsearch.core.query.Query;
|
||||
import org.springframework.data.repository.NoRepositoryBean;
|
||||
import org.springframework.data.repository.PagingAndSortingRepository;
|
||||
import org.springframework.lang.Nullable;
|
||||
|
||||
/**
|
||||
* @param <T>
|
||||
@ -31,9 +34,15 @@ import org.springframework.data.repository.NoRepositoryBean;
|
||||
* @author Peter-Josef Meisch
|
||||
*/
|
||||
@NoRepositoryBean
|
||||
public interface ElasticsearchRepository<T, ID> extends ElasticsearchCrudRepository<T, ID> {
|
||||
public interface ElasticsearchRepository<T, ID> extends PagingAndSortingRepository<T, ID> {
|
||||
|
||||
<S extends T> S index(S entity);
|
||||
/**
|
||||
* @deprecated since 4.0, use {@link #save(Object)} instead
|
||||
*/
|
||||
@Deprecated
|
||||
default <S extends T> S index(S entity) {
|
||||
return save(entity);
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is intended to be used when many single inserts must be made that cannot be aggregated to be inserted
|
||||
@ -42,15 +51,38 @@ public interface ElasticsearchRepository<T, ID> extends ElasticsearchCrudReposit
|
||||
*/
|
||||
<S extends T> S indexWithoutRefresh(S entity);
|
||||
|
||||
/**
|
||||
* @deprecated since 4.0, use standard repository method naming or @{@link Query} annotated methods, or
|
||||
* {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||
*/
|
||||
Iterable<T> search(QueryBuilder query);
|
||||
|
||||
/**
|
||||
* @deprecated since 4.0, use standard repository method naming or @{@link Query} annotated methods, or
|
||||
* {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||
*/
|
||||
Page<T> search(QueryBuilder query, Pageable pageable);
|
||||
|
||||
/**
|
||||
* @deprecated since 4.0, use standard repository method naming or @{@link Query} annotated methods, or
|
||||
* {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||
*/
|
||||
Page<T> search(Query searchQuery);
|
||||
|
||||
Page<T> searchSimilar(T entity, String[] fields, Pageable pageable);
|
||||
/**
|
||||
* Search for similar entities using a morelikethis query
|
||||
*
|
||||
* @param entity the entity for which similar documents should be searched, must not be {@literal null}
|
||||
* @param fields
|
||||
* @param pageable , must not be {@literal null}
|
||||
* @return
|
||||
*/
|
||||
Page<T> searchSimilar(T entity, @Nullable String[] fields, Pageable pageable);
|
||||
|
||||
/**
|
||||
* @deprecated since 4.0, use {@link IndexOperations#refresh(Class)} instead. Repository methods should call refresh
|
||||
* in their implementation.
|
||||
*/
|
||||
@Deprecated
|
||||
void refresh();
|
||||
|
||||
Class<T> getEntityClass();
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ import java.util.Collections;
|
||||
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
|
||||
import org.springframework.core.annotation.AnnotationAttributes;
|
||||
import org.springframework.data.elasticsearch.annotations.Document;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchCrudRepository;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
||||
import org.springframework.data.elasticsearch.repository.support.ElasticsearchRepositoryFactoryBean;
|
||||
import org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource;
|
||||
@ -99,7 +98,7 @@ public class ElasticsearchRepositoryConfigExtension extends RepositoryConfigurat
|
||||
*/
|
||||
@Override
|
||||
protected Collection<Class<?>> getIdentifyingTypes() {
|
||||
return Arrays.asList(ElasticsearchRepository.class, ElasticsearchCrudRepository.class);
|
||||
return Arrays.asList(ElasticsearchRepository.class, ElasticsearchRepository.class);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* infrastructure to define the Elasticsearch mapping for an index.
|
||||
*/
|
||||
@org.springframework.lang.NonNullApi
|
||||
package org.springframework.data.elasticsearch.repository;
|
@ -76,6 +76,7 @@ public class ElasticsearchPartQuery extends AbstractElasticsearchRepositoryQuery
|
||||
if (tree.isDelete()) {
|
||||
result = countOrGetDocumentsForDelete(query, accessor);
|
||||
elasticsearchOperations.delete(query, clazz, index);
|
||||
elasticsearchOperations.getIndexOperations().refresh(index);
|
||||
} else if (queryMethod.isPageQuery()) {
|
||||
query.setPageable(accessor.getPageable());
|
||||
SearchHits<?> searchHits = elasticsearchOperations.search(query, clazz, index);
|
||||
|
@ -52,6 +52,7 @@ import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilde
|
||||
import org.springframework.data.elasticsearch.core.query.Query;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
||||
import org.springframework.data.util.Streamable;
|
||||
import org.springframework.lang.Nullable;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
@ -132,11 +133,12 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
int itemCount = (int) this.count();
|
||||
|
||||
if (itemCount == 0) {
|
||||
return new PageImpl<>(Collections.<T> emptyList());
|
||||
return new PageImpl<>(Collections.emptyList());
|
||||
}
|
||||
return this.findAll(PageRequest.of(0, Math.max(1, itemCount)));
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Page<T> findAll(Pageable pageable) {
|
||||
NativeSearchQuery query = new NativeSearchQueryBuilder().withQuery(matchAllQuery()).withPageable(pageable).build();
|
||||
@ -145,12 +147,13 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return (Page<T>) SearchHitSupport.unwrapSearchHits(page);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Iterable<T> findAll(Sort sort) {
|
||||
int itemCount = (int) this.count();
|
||||
|
||||
if (itemCount == 0) {
|
||||
return new PageImpl<>(Collections.<T> emptyList());
|
||||
return new PageImpl<>(Collections.emptyList());
|
||||
}
|
||||
NativeSearchQuery query = new NativeSearchQueryBuilder().withQuery(matchAllQuery())
|
||||
.withPageable(PageRequest.of(0, itemCount, sort)).build();
|
||||
@ -185,11 +188,6 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return Streamable.of(saveAll(entities)).stream().collect(Collectors.toList());
|
||||
}
|
||||
|
||||
@Override
|
||||
public <S extends T> S index(S entity) {
|
||||
return save(entity);
|
||||
}
|
||||
|
||||
@Override
|
||||
public <S extends T> S indexWithoutRefresh(S entity) {
|
||||
Assert.notNull(entity, "Cannot save 'null' entity.");
|
||||
@ -216,13 +214,14 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return findById(id).isPresent();
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Iterable<T> search(QueryBuilder query) {
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(query).build();
|
||||
int count = (int) operations.count(searchQuery, getEntityClass(), getIndexCoordinates());
|
||||
|
||||
if (count == 0) {
|
||||
return new PageImpl<>(Collections.<T> emptyList());
|
||||
return new PageImpl<>(Collections.emptyList());
|
||||
}
|
||||
searchQuery.setPageable(PageRequest.of(0, count));
|
||||
SearchHits<T> searchHits = operations.search(searchQuery, getEntityClass(), getIndexCoordinates());
|
||||
@ -230,6 +229,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return (Page<T>) SearchHitSupport.unwrapSearchHits(page);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Page<T> search(QueryBuilder query, Pageable pageable) {
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(query).withPageable(pageable).build();
|
||||
@ -238,6 +238,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return (Page<T>) SearchHitSupport.unwrapSearchHits(page);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Page<T> search(Query query) {
|
||||
SearchHits<T> searchHits = operations.search(query, getEntityClass(), getIndexCoordinates());
|
||||
@ -245,6 +246,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return (Page<T>) SearchHitSupport.unwrapSearchHits(page);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public Page<T> searchSimilar(T entity, String[] fields, Pageable pageable) {
|
||||
Assert.notNull(entity, "Cannot search similar records for 'null'.");
|
||||
@ -264,24 +266,39 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
|
||||
@Override
|
||||
public void deleteById(ID id) {
|
||||
|
||||
Assert.notNull(id, "Cannot delete entity with id 'null'.");
|
||||
|
||||
IndexCoordinates indexCoordinates = getIndexCoordinates();
|
||||
operations.delete(stringIdRepresentation(id), indexCoordinates);
|
||||
doDelete(id, indexCoordinates);
|
||||
indexOperations.refresh(indexCoordinates);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void delete(T entity) {
|
||||
|
||||
Assert.notNull(entity, "Cannot delete 'null' entity.");
|
||||
deleteById(extractIdFromBean(entity));
|
||||
indexOperations.refresh(getIndexCoordinates());
|
||||
|
||||
IndexCoordinates indexCoordinates = getIndexCoordinates();
|
||||
doDelete(extractIdFromBean(entity), indexCoordinates);
|
||||
indexOperations.refresh(indexCoordinates);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteAll(Iterable<? extends T> entities) {
|
||||
|
||||
Assert.notNull(entities, "Cannot delete 'null' list.");
|
||||
|
||||
IndexCoordinates indexCoordinates = getIndexCoordinates();
|
||||
for (T entity : entities) {
|
||||
delete(entity);
|
||||
doDelete(extractIdFromBean(entity), indexCoordinates);
|
||||
}
|
||||
indexOperations.refresh(indexCoordinates);
|
||||
}
|
||||
|
||||
private void doDelete(@Nullable ID id, IndexCoordinates indexCoordinates) {
|
||||
if (id != null) {
|
||||
operations.delete(stringIdRepresentation(id), indexCoordinates);
|
||||
}
|
||||
}
|
||||
|
||||
@ -328,8 +345,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return resolveReturnedClassFromGenericType(clazz.getSuperclass());
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<T> getEntityClass() {
|
||||
protected Class<T> getEntityClass() {
|
||||
|
||||
if (!isEntityClassSet()) {
|
||||
try {
|
||||
@ -350,6 +366,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
this.entityClass = entityClass;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
protected ID extractIdFromBean(T entity) {
|
||||
return entityInformation.getId(entity);
|
||||
}
|
||||
@ -364,7 +381,7 @@ public abstract class AbstractElasticsearchRepository<T, ID> implements Elastics
|
||||
return stringIds;
|
||||
}
|
||||
|
||||
protected abstract String stringIdRepresentation(ID id);
|
||||
protected abstract String stringIdRepresentation(@Nullable ID id);
|
||||
|
||||
private Long extractVersionFromBean(T entity) {
|
||||
return entityInformation.getVersion(entity);
|
||||
|
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* infrastructure to define the Elasticsearch mapping for an index.
|
||||
*/
|
||||
@org.springframework.lang.NonNullApi
|
||||
package org.springframework.data.elasticsearch.repository.support;
|
@ -39,7 +39,7 @@ import org.springframework.data.elasticsearch.core.query.NativeSearchQuery;
|
||||
import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchRestTemplateConfiguration;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.SpringIntegrationTest;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchCrudRepository;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
||||
import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories;
|
||||
import org.springframework.data.elasticsearch.utils.IndexInitializer;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
@ -229,6 +229,6 @@ public class DynamicSettingAndMappingEntityRepositoryTests {
|
||||
* @author Mohsin Husen
|
||||
*/
|
||||
public interface DynamicSettingAndMappingEntityRepository
|
||||
extends ElasticsearchCrudRepository<DynamicSettingAndMappingEntity, String> {}
|
||||
extends ElasticsearchRepository<DynamicSettingAndMappingEntity, String> {}
|
||||
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ import org.springframework.data.elasticsearch.core.ElasticsearchOperations;
|
||||
import org.springframework.data.elasticsearch.core.IndexOperations;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchRestTemplateConfiguration;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.SpringIntegrationTest;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchCrudRepository;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
||||
import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories;
|
||||
import org.springframework.data.elasticsearch.utils.IndexInitializer;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
@ -57,6 +57,7 @@ public class FieldDynamicMappingEntityRepositoryTests {
|
||||
@Autowired private ElasticsearchOperations operations;
|
||||
|
||||
private IndexOperations indexOperations;
|
||||
|
||||
@BeforeEach
|
||||
public void before() {
|
||||
indexOperations = operations.getIndexOperations();
|
||||
@ -129,6 +130,6 @@ public class FieldDynamicMappingEntityRepositoryTests {
|
||||
* @author Ted Liang
|
||||
*/
|
||||
public interface FieldDynamicMappingEntityRepository
|
||||
extends ElasticsearchCrudRepository<FieldDynamicMappingEntity, String> {}
|
||||
extends ElasticsearchRepository<FieldDynamicMappingEntity, String> {}
|
||||
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates;
|
||||
import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.ElasticsearchRestTemplateConfiguration;
|
||||
import org.springframework.data.elasticsearch.junit.jupiter.SpringIntegrationTest;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchCrudRepository;
|
||||
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
||||
import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories;
|
||||
import org.springframework.data.elasticsearch.utils.IndexInitializer;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
@ -72,6 +72,7 @@ public class SynonymRepositoryTests {
|
||||
void after() {
|
||||
indexOperations.deleteIndex(SynonymEntity.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldDo() {
|
||||
|
||||
@ -112,5 +113,5 @@ public class SynonymRepositoryTests {
|
||||
*
|
||||
* @author Artur Konczak
|
||||
*/
|
||||
interface SynonymRepository extends ElasticsearchCrudRepository<SynonymEntity, String> {}
|
||||
interface SynonymRepository extends ElasticsearchRepository<SynonymEntity, String> {}
|
||||
}
|
||||
|
@ -389,7 +389,6 @@ public class UUIDElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
List<SampleEntityUUIDKeyed> result = repository.deleteByAvailable(true);
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
assertThat(result).hasSize(2);
|
||||
@ -423,7 +422,6 @@ public class UUIDElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
List<SampleEntityUUIDKeyed> result = repository.deleteByMessage("hello world 3");
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
assertThat(result).hasSize(1);
|
||||
@ -457,7 +455,6 @@ public class UUIDElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
repository.deleteByType("article");
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(matchAllQuery()).build();
|
||||
@ -478,7 +475,6 @@ public class UUIDElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
repository.delete(sampleEntityUUIDKeyed);
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(termQuery("id", documentId.toString()))
|
||||
@ -601,8 +597,7 @@ public class UUIDElasticsearchRepositoryTests {
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
@Data
|
||||
@Document(indexName = "test-index-uuid-keyed", replicas = 0,
|
||||
refreshInterval = "-1")
|
||||
@Document(indexName = "test-index-uuid-keyed", replicas = 0, refreshInterval = "-1")
|
||||
static class SampleEntityUUIDKeyed {
|
||||
|
||||
@Id private UUID id;
|
||||
|
@ -148,9 +148,7 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
sampleEntity.setVersion(System.currentTimeMillis());
|
||||
|
||||
// when
|
||||
assertThatThrownBy(() -> {
|
||||
repository.save(sampleEntity);
|
||||
}).isInstanceOf(ActionRequestValidationException.class);
|
||||
assertThatThrownBy(() -> repository.save(sampleEntity)).isInstanceOf(ActionRequestValidationException.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -385,7 +383,6 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
long result = repository.deleteSampleEntityById(documentId);
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(termQuery("id", documentId)).build();
|
||||
@ -422,7 +419,6 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
List<SampleEntity> result = repository.deleteByAvailable(true);
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
assertThat(result).hasSize(2);
|
||||
@ -456,7 +452,6 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
List<SampleEntity> result = repository.deleteByMessage("hello world 3");
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
assertThat(result).hasSize(1);
|
||||
@ -490,7 +485,6 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
|
||||
// when
|
||||
repository.deleteByType("article");
|
||||
repository.refresh();
|
||||
|
||||
// then
|
||||
NativeSearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(matchAllQuery()).build();
|
||||
@ -581,7 +575,7 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
sampleEntity.setMessage("some message");
|
||||
|
||||
// when
|
||||
repository.index(sampleEntity);
|
||||
repository.save(sampleEntity);
|
||||
|
||||
// then
|
||||
Page<SampleEntity> entities = repository.search(termQuery("id", documentId), PageRequest.of(0, 50));
|
||||
@ -707,8 +701,7 @@ public class SimpleElasticsearchRepositoryTests {
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
@Document(indexName = "test-index-sample-simple-repository", replicas = 0,
|
||||
refreshInterval = "-1")
|
||||
@Document(indexName = "test-index-sample-simple-repository", replicas = 0, refreshInterval = "-1")
|
||||
static class SampleEntity {
|
||||
|
||||
@Id private String id;
|
||||
|
Loading…
x
Reference in New Issue
Block a user