mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-05-31 09:12:11 +00:00
parent
8ef0970517
commit
b17999f8fa
@ -56,21 +56,21 @@ public interface ElasticsearchRepository<T, ID> extends PagingAndSortingReposito
|
|||||||
<S extends T> S indexWithoutRefresh(S entity);
|
<S extends T> S indexWithoutRefresh(S entity);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
|
* @deprecated since 4.0, use standard repository method naming or @{@link Query}
|
||||||
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
Iterable<T> search(QueryBuilder query);
|
Iterable<T> search(QueryBuilder query);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
|
* @deprecated since 4.0, use standard repository method naming or @{@link Query}
|
||||||
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
Page<T> search(QueryBuilder query, Pageable pageable);
|
Page<T> search(QueryBuilder query, Pageable pageable);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated since 4.0, use {@link #searchQuery(Query)}, standard repository method naming or @{@link Query}
|
* @deprecated since 4.0, use standard repository method naming or @{@link Query}
|
||||||
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
* annotated methods, or {@link org.springframework.data.elasticsearch.core.ElasticsearchOperations}.
|
||||||
*/
|
*/
|
||||||
Page<T> search(Query searchQuery);
|
Page<T> search(Query searchQuery);
|
||||||
@ -86,7 +86,7 @@ public interface ElasticsearchRepository<T, ID> extends PagingAndSortingReposito
|
|||||||
Page<T> searchSimilar(T entity, @Nullable String[] fields, Pageable pageable);
|
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
|
* @deprecated since 4.0, use {@link IndexOperations#refresh()} instead. Repository methods should call refresh
|
||||||
* in their implementation.
|
* in their implementation.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
Loading…
x
Reference in New Issue
Block a user