Skip to content

Commit 8f86007

Browse files
committed
Bundle Javadoc with Antora documentation site.
Closes #2948.
1 parent 95e028a commit 8f86007

File tree

9 files changed

+34
-30
lines changed

9 files changed

+34
-30
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ target
3030
build/
3131
node_modules
3232
node
33-
package.json
3433
package-lock.json
3534

3635
.mvn/.gradle-enterprise

package.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"dependencies": {
3+
"antora": "3.2.0-alpha.6",
4+
"@antora/atlas-extension": "1.0.0-alpha.2",
5+
"@antora/collector-extension": "1.0.0-alpha.7",
6+
"@asciidoctor/tabs": "1.0.0-beta.6",
7+
"@springio/antora-extensions": "1.13.0",
8+
"@springio/asciidoctor-extensions": "1.0.0-alpha.11"
9+
}
10+
}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@
468468
<build>
469469
<plugins>
470470
<plugin>
471-
<groupId>io.spring.maven.antora</groupId>
471+
<groupId>org.antora</groupId>
472472
<artifactId>antora-maven-plugin</artifactId>
473473
</plugin>
474474
</plugins>

src/main/antora/antora-playbook.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
# The purpose of this Antora playbook is to build the docs in the current branch.
44
antora:
55
extensions:
6-
- '@antora/collector-extension'
7-
- require: '@springio/antora-extensions/root-component-extension'
6+
- require: '@springio/antora-extensions'
87
root_component_name: 'data-elasticsearch'
98
site:
109
title: Spring Data Elasticsearch
@@ -22,13 +21,12 @@ content:
2221
start_path: src/main/antora
2322
asciidoc:
2423
attributes:
25-
page-pagination: ''
2624
hide-uri-scheme: '@'
2725
tabs-sync-option: '@'
28-
chomp: 'all'
2926
extensions:
3027
- '@asciidoctor/tabs'
3128
- '@springio/asciidoctor-extensions'
29+
- '@springio/asciidoctor-extensions/javadoc-extension'
3230
sourcemap: true
3331
urls:
3432
latest_version_segment: ''
@@ -38,5 +36,5 @@ runtime:
3836
format: pretty
3937
ui:
4038
bundle:
41-
url: https://github.com/spring-io/antora-ui-spring/releases/download/v0.3.5/ui-bundle.zip
39+
url: https://github.com/spring-io/antora-ui-spring/releases/download/v0.4.16/ui-bundle.zip
4240
snapshot: true

src/main/antora/antora.yml

+5
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ ext:
1010
local: true
1111
scan:
1212
dir: target/classes/
13+
- run:
14+
command: ./mvnw package -Pdistribute
15+
local: true
16+
scan:
17+
dir: target/antora

src/main/antora/modules/ROOT/nav.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@
4141
** xref:repositories/query-keywords-reference.adoc[]
4242
** xref:repositories/query-return-types-reference.adoc[]
4343
44-
* https://github.com/spring-projects/spring-data-commons/wiki[Wiki]
44+
* xref:attachment$api/java/index.html[Javadoc,role=link-external,window=_blank]
45+
* https://github.com/spring-projects/spring-data-commons/wiki[Wiki,role=link-external,window=_blank]

src/main/antora/modules/ROOT/pages/elasticsearch/clients.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class MyClientConfig extends ElasticsearchConfiguration {
3131
<.> for a detailed description of the builder methods see xref:elasticsearch/clients.adoc#elasticsearch.clients.configuration[Client Configuration]
3232
====
3333

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.
3535

3636

3737
The following beans can then be injected in other Spring components:
@@ -52,13 +52,13 @@ RestClient restClient; <.>
5252
JsonpMapper jsonpMapper; <.>
5353
----
5454
55-
<.> an implementation of `ElasticsearchOperations`
55+
<.> an implementation of javadoc:org.springframework.data.elasticsearch.core.ElasticsearchOperations[]
5656
<.> the `co.elastic.clients.elasticsearch.ElasticsearchClient` that is used.
5757
<.> the low level `RestClient` from the Elasticsearch libraries
5858
<.> the `JsonpMapper` user by the Elasticsearch `Transport`
5959
====
6060

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.
6262
When using repositories, this instance is used under the hood as well.
6363

6464
[[elasticsearch.clients.reactiverestclient]]
@@ -86,7 +86,7 @@ public class MyClientConfig extends ReactiveElasticsearchConfiguration {
8686
<.> for a detailed description of the builder methods see xref:elasticsearch/clients.adoc#elasticsearch.clients.configuration[Client Configuration]
8787
====
8888

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.
9090

9191
The following beans can then be injected in other Spring components:
9292

@@ -108,20 +108,20 @@ JsonpMapper jsonpMapper; <.>
108108
109109
the following can be injected:
110110
111-
<.> an implementation of `ReactiveElasticsearchOperations`
111+
<.> an implementation of javadoc:org.springframework.data.elasticsearch.core.ReactiveElasticsearchOperations[]
112112
<.> the `org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient` that is used.
113113
This is a reactive implementation based on the Elasticsearch client implementation.
114114
<.> the low level `RestClient` from the Elasticsearch libraries
115115
<.> the `JsonpMapper` user by the Elasticsearch `Transport`
116116
====
117117

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.
119119
When using repositories, this instance is used under the hood as well.
120120

121121
[[elasticsearch.clients.configuration]]
122122
== Client Configuration
123123

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.
125125

126126
.Client Configuration
127127
====
@@ -178,7 +178,7 @@ If this is used in the reactive setup, the supplier function *must not* block!
178178
[[elasticsearch.clients.configuration.callbacks]]
179179
=== Client configuration callbacks
180180

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.
182182
In the case this is not enough, the user can add callback functions by using the `withClientConfigurer(ClientConfigurationCallback<?>)` method.
183183

184184
The following callbacks are provided:

src/main/antora/modules/ROOT/pages/elasticsearch/template.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
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[]).
55

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.
1010

1111
These interfaces correspond to the structuring of the https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html[Elasticsearch API].
1212

src/test/java/org/springframework/data/elasticsearch/junit/jupiter/ClusterConnection.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ private ClusterConnectionInfo startElasticsearchContainer() {
132132
DockerImageName dockerImageName = getDockerImageName(testcontainersProperties);
133133

134134
ElasticsearchContainer elasticsearchContainer = new SpringDataElasticsearchContainer(dockerImageName)
135-
.withEnv(testcontainersProperties).withStartupTimeout(Duration.ofMinutes(2));
135+
.withEnv(testcontainersProperties).withStartupTimeout(Duration.ofMinutes(2)).withReuse(true);
136136
elasticsearchContainer.start();
137137

138138
return ClusterConnectionInfo.builder() //
@@ -192,16 +192,7 @@ private Map<String, String> testcontainersProperties(String propertiesFile) {
192192
@Override
193193
public void close() {
194194

195-
if (clusterConnectionInfo != null && clusterConnectionInfo.getElasticsearchContainer() != null) {
196-
if (LOGGER.isDebugEnabled()) {
197-
LOGGER.debug("Stopping container");
198-
}
199-
clusterConnectionInfo.getElasticsearchContainer().stop();
200-
}
201195

202-
if (LOGGER.isDebugEnabled()) {
203-
LOGGER.debug("closed");
204-
}
205196
}
206197

207198
private static class SpringDataElasticsearchContainer extends ElasticsearchContainer {

0 commit comments

Comments
 (0)