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
Discover how to program interactions with Couchbase via the Data, Query, and Search services.
10
11
11
12
12
-
After you have navigated through
13
-
14
-
[signing up to Capella],
15
-
if {} is entered as your chosen language, you will be pointed to a clonable quickstart app on GitHub.
13
+
After you have navigated through https://cloud.couchbase.com/sign-up[signing up to Capella],
14
+
if {name_platform} is entered as your chosen language, you will be pointed to a clonable quickstart app on GitHub.
16
15
If you were not, you can still find it https://github.com/couchbase-examples/java-springboot-quickstart[here].
17
16
18
17
19
18
Often, the first step developers take after creating their database is to create a REST API that can perform Create, Read, Update, and Delete (CRUD) operations for that database.
20
-
The https://github.com/couchbase-examples/java-springboot-quickstart[quickstart repo] is designed to teach you and give you a starter project (in Java using Spring Boot) to generate such a REST API.
19
+
The https://github.com/couchbase-examples/java-springboot-quickstart[quickstart project] is designed to teach you and give you a starter project (in Java using Spring Boot) to generate such a REST API.
21
20
After you have loaded the travel-sample bucket in your database, you can run this application which is a REST API with Swagger documentation so that you can learn:
22
21
23
22
. How to create, read, update, and delete documents using xref:howto:kv-operations[Key-Value operations].
Copy file name to clipboardExpand all lines: modules/hello-world/pages/start-using-sdk.adoc
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,11 +127,12 @@ In production, Couchbase strongly recommends setting up users with more granular
127
127
128
128
129
129
== Installation
130
+
130
131
We recommend running the latest Java LTS version (i.e. at the time of writing JDK 21) with the highest patch version available.
131
132
// Other supported Java versions will work, too.
132
133
Couchbase publishes all stable artifacts to https://central.sonatype.com/namespace/com.couchbase.client[Maven Central].
133
134
134
-
The latest version of 3.7.x is https://central.sonatype.com/artifact/com.couchbase.client/java-client/{sdk_current_version}/jar[{sdk_current_version}].
135
+
The latest version of {sdk_dot_minor}.x is https://central.sonatype.com/artifact/com.couchbase.client/java-client/{sdk_current_version}/jar[{sdk_current_version}].
135
136
136
137
// tag::quick-install[]
137
138
More details of the installation process are in the
@@ -181,7 +182,7 @@ If you're all set up and in a real hurry, just grab this code sample and add in
0 commit comments