You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc
+8-8
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ public class MyClientConfig extends ElasticsearchConfiguration {
31
31
<.> for a detailed description of the builder methods see xref:elasticsearch/clients.adoc#elasticsearch.clients.configuration[Client Configuration]
32
32
====
33
33
34
-
The `ElasticsearchConfiguration` class allows further configuration by overriding for example the `jsonpMapper()` or `transportOptions()` methods.
34
+
The javadoc:org.springframework.data.elasticsearch.client.elc.ElasticsearchConfiguration[]] class allows further configuration by overriding for example the `jsonpMapper()` or `transportOptions()` methods.
35
35
36
36
37
37
The following beans can then be injected in other Spring components:
@@ -52,13 +52,13 @@ RestClient restClient; <.>
52
52
JsonpMapper jsonpMapper; <.>
53
53
----
54
54
55
-
<.> an implementation of `ElasticsearchOperations`
55
+
<.> an implementation of javadoc:org.springframework.data.elasticsearch.core.ElasticsearchOperations[]
56
56
<.> the `co.elastic.clients.elasticsearch.ElasticsearchClient` that is used.
57
57
<.> the low level `RestClient` from the Elasticsearch libraries
58
58
<.> the `JsonpMapper` user by the Elasticsearch `Transport`
59
59
====
60
60
61
-
Basically one should just use the `ElasticsearchOperations` to interact with the Elasticsearch cluster.
61
+
Basically one should just use the javadoc:org.springframework.data.elasticsearch.core.ElasticsearchOperations[] to interact with the Elasticsearch cluster.
62
62
When using repositories, this instance is used under the hood as well.
63
63
64
64
[[elasticsearch.clients.reactiverestclient]]
@@ -86,7 +86,7 @@ public class MyClientConfig extends ReactiveElasticsearchConfiguration {
86
86
<.> for a detailed description of the builder methods see xref:elasticsearch/clients.adoc#elasticsearch.clients.configuration[Client Configuration]
87
87
====
88
88
89
-
The `ReactiveElasticsearchConfiguration` class allows further configuration by overriding for example the `jsonpMapper()` or `transportOptions()` methods.
89
+
The javadoc:org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchConfiguration[] class allows further configuration by overriding for example the `jsonpMapper()` or `transportOptions()` methods.
90
90
91
91
The following beans can then be injected in other Spring components:
<.> an implementation of `ReactiveElasticsearchOperations`
111
+
<.> an implementation of javadoc:org.springframework.data.elasticsearch.core.ReactiveElasticsearchOperations[]
112
112
<.> the `org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient` that is used.
113
113
This is a reactive implementation based on the Elasticsearch client implementation.
114
114
<.> the low level `RestClient` from the Elasticsearch libraries
115
115
<.> the `JsonpMapper` user by the Elasticsearch `Transport`
116
116
====
117
117
118
-
Basically one should just use the `ReactiveElasticsearchOperations` to interact with the Elasticsearch cluster.
118
+
Basically one should just use the javadoc:org.springframework.data.elasticsearch.core.ReactiveElasticsearchOperations[] to interact with the Elasticsearch cluster.
119
119
When using repositories, this instance is used under the hood as well.
120
120
121
121
[[elasticsearch.clients.configuration]]
122
122
== Client Configuration
123
123
124
-
Client behaviour can be changed via the `ClientConfiguration` that allows to set options for SSL, connect and socket timeouts, headers and other parameters.
124
+
Client behaviour can be changed via the javadoc:org.springframework.data.elasticsearch.client.ClientConfiguration[] that allows to set options for SSL, connect and socket timeouts, headers and other parameters.
125
125
126
126
.Client Configuration
127
127
====
@@ -178,7 +178,7 @@ If this is used in the reactive setup, the supplier function *must not* block!
178
178
[[elasticsearch.clients.configuration.callbacks]]
179
179
=== Client configuration callbacks
180
180
181
-
The `ClientConfiguration` class offers the most common parameters to configure the client.
181
+
The javadoc:org.springframework.data.elasticsearch.client.ClientConfiguration[] class offers the most common parameters to configure the client.
182
182
In the case this is not enough, the user can add callback functions by using the `withClientConfigurer(ClientConfigurationCallback<?>)` method.
Copy file name to clipboardexpand all lines: src/main/antora/modules/ROOT/pages/elasticsearch/template.adoc
+4-4
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@
3
3
4
4
Spring Data Elasticsearch uses several interfaces to define the operations that can be called against an Elasticsearch index (for a description of the reactive interfaces see xref:elasticsearch/reactive-template.adoc[]).
5
5
6
-
* `IndexOperations` defines actions on index level like creating or deleting an index.
7
-
* `DocumentOperations` defines actions to store, update and retrieve entities based on their id.
8
-
* `SearchOperations` define the actions to search for multiple entities using queries
9
-
* `ElasticsearchOperations` combines the `DocumentOperations` and `SearchOperations` interfaces.
6
+
* javadoc:org.springframework.data.elasticsearch.core.IndexOperations[] defines actions on index level like creating or deleting an index.
7
+
* javadoc:org.springframework.data.elasticsearch.core.DocumentOperations[] defines actions to store, update and retrieve entities based on their id.
8
+
* javadoc:org.springframework.data.elasticsearch.core.SearchOperations[] define the actions to search for multiple entities using queries
9
+
* javadoc:org.springframework.data.elasticsearch.core.ElasticsearchOperations[] combines the `DocumentOperations` and `SearchOperations` interfaces.
10
10
11
11
These interfaces correspond to the structuring of the https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html[Elasticsearch API].
0 commit comments