Install and Start Using the Java SDK with Couchbase Server
The Couchbase Java SDK allows Java applications to access a Couchbase cluster. It offers synchronous APIs as well as reactive and asynchronous equivalents to maximize flexibility and performance.
The Couchbase Java SDK 3.0 is a complete rewrite of the 2.x API, providing a simpler surface area and adding support for future Couchbase Server features like Collections and Scopes (available in Couchbase Server 6.5 as a developer preview).
The (reactive) API also migrated from RxJava
to Reactor
, along with other improvements to performance, logging, debugging and timeout troubleshooting.
If you’re upgrading your application from Java SDK 2.x, please read our Migrating 2.x code to SDK 3.0 Guide.
Installing the SDK
At least Java 8 is required for current releases; see the Compatibility section for details. We recommend running the latest Java LTS version (i.e. at the time of writing JDK 11) with the highest patch version available.
Couchbase publishes all stable artifacts to Maven Central. The latest version (as of November 2020) is 3.0.10.
You can use your favorite dependency management tool to install the SDK. The following snippet shows how to do it with maven.
<dependencies>
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>java-client</artifactId>
<version>3.0.10</version>
</dependency>
</dependencies>
For gradle, you can use:
implementation 'com.couchbase.client:java-client:3.0.10'
Alternatively, we provide a zip file with all the dependencies bundled if you wish to manually include the jar
files in your classpath. Refer to the Release Notes for further details. You can also find links to the hosted javadocs there.
Hello Couchbase
Once you have the Java client installed, open your IDE, and try out the following:
Cluster cluster = Cluster.connect(connectionString, username, password);
Couchbase uses Role Based Access Control (RBAC) to control access to resources.
Here we will use the Full Admin role created during installation of the Couchbase Data Platform.
For production client code, you will want to use more appropriate, restrictive settings — but here we want to get you up and running quickly.
If you’re developing client code on the same VM or machine as the Couchbase Server, your connection string can be just localhost
.
The Cluster
provides access to cluster-level operations like N1Ql queries, analytics or full-text search. You will also find different management APIs on it.
If you are not using an IDE or are new to java, the following imports are necessary to build the following snippets:
import com.couchbase.client.java.*;
import com.couchbase.client.java.kv.*;
import com.couchbase.client.java.json.*;
import com.couchbase.client.java.query.*;
To access the KV (Key/Value) API or to query views, you need to open a Bucket
:
// get a bucket reference
Bucket bucket = cluster.bucket(bucketName);
If you installed the travel-sample` data bucket, substitute travel-sample for bucket-name.
The 3.0 SDK is ready for the introduction of Collections in an upcoming release of the Couchbase Data Platform.
The latest release, Couchbase Server 6.5, brings a limited Developer Preview of Collections, allowing Documents to be grouped by purpose or theme, according to specified Scope.
Here we will use the defaultCollection
, which covers the whole Bucket and must be used when connecting to a 6.5 cluster or earlier.
// get a collection reference
Collection collection = bucket.defaultCollection();
KV Operations are described in detail on the KV Operations page, but to get you started the following code creates a new document and then fetches it again, printing the result.
// Upsert Document
MutationResult upsertResult = collection.upsert(
"my-document",
JsonObject.create().put("name", "mike")
);
// Get Document
GetResult getResult = collection.get("my-document");
String name = getResult.contentAsObject().getString("name");
System.out.println(name); // name == "mike"
You can also perform a N1QL query at the cluster level:
QueryResult result = cluster.query("select \"Hello World\" as greeting");
System.out.println(result.rowsAsObject());
You can learn more about N1QL queries on the Query page. Other services (like analytics, search or views) work very similar to the two shown above. Please refer to their respective documentation sections to learn more.
Full Example
If you want to copy and paste to run the full example, here it is:
Cluster cluster = Cluster.connect(connectionString, username, password);
Bucket bucket = cluster.bucket(bucketName);
Collection collection = bucket.defaultCollection();
MutationResult upsertResult = collection.upsert(
"my-document",
JsonObject.create().put("name", "mike")
);
GetResult getResult = collection.get("my-document");
String name = getResult.contentAsObject().getString("name");
System.out.println(name); // name == "mike"
QueryResult result = cluster.query("select \"Hello World\" as greeting");
System.out.println(result.rowsAsObject());
If you are connecting to Couchbase Cloud, be sure to get the correct endpoint as well as user, password, and couchbasecloudbucket
— and see the Cloud section, below.
/*
* Copyright (c) 2020 Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.couchbase.devguide;
import com.couchbase.client.core.deps.io.netty.handler.ssl.util.InsecureTrustManagerFactory;
import com.couchbase.client.core.env.IoConfig;
import com.couchbase.client.core.env.SecurityConfig;
import com.couchbase.client.java.Bucket;
import com.couchbase.client.java.Cluster;
import com.couchbase.client.java.ClusterOptions;
import com.couchbase.client.java.Collection;
import com.couchbase.client.java.env.ClusterEnvironment;
import com.couchbase.client.java.json.JsonArray;
import com.couchbase.client.java.json.JsonObject;
import com.couchbase.client.java.manager.query.CreatePrimaryQueryIndexOptions;
import com.couchbase.client.java.query.QueryResult;
import static com.couchbase.client.java.query.QueryOptions.queryOptions;
import java.time.Duration;
public class CloudConnect {
public static void main(String... args) {
// Update this to your cluster
String endpoint = "cb.<your endpoint address>.dp.cloud.couchbase.com";
String bucketName = "couchbasecloudbucket";
String username = "user";
String password = "password";
// User Input ends here.
ClusterEnvironment env = ClusterEnvironment.builder()
.securityConfig(SecurityConfig.enableTls(true)
.trustManagerFactory(InsecureTrustManagerFactory.INSTANCE))
.ioConfig(IoConfig.enableDnsSrv(true))
.build();
// Initialize the Connection
Cluster cluster = Cluster.connect(endpoint,
ClusterOptions.clusterOptions(username, password).environment(env));
Bucket bucket = cluster.bucket(bucketName);
bucket.waitUntilReady(Duration.parse("PT10S"));
Collection collection = bucket.defaultCollection();
cluster.queryIndexes().createPrimaryIndex(bucketName, CreatePrimaryQueryIndexOptions.createPrimaryQueryIndexOptions().ignoreIfExists(true));
// Create a JSON Document
JsonObject arthur = JsonObject.create()
.put("name", "Arthur")
.put("email", "kingarthur@couchbase.com")
.put("interests", JsonArray.from("Holy Grail", "African Swallows"));
// Store the Document
collection.upsert(
"u:king_arthur",
arthur
);
// Load the Document and print it
// Prints Content and Metadata of the stored Document
System.out.println(collection.get("u:king_arthur"));
// Perform a N1QL Query
QueryResult result = cluster.query(
String.format("SELECT name FROM `%s` WHERE $1 IN interests", bucketName),
queryOptions().parameters(JsonArray.from("African Swallows"))
);
// Print each found Row
for (JsonObject row : result.rowsAsObject()) {
System.out.println(row);
}
}
}
Cloud Connections
For developing on Couchbase Cloud, if you are not working from the same Availability Zone, refer to the following:
-
Notes on Constrained Network Environments,
-
If you have a consumer-grade router which has problems with DNS-SRV records review our Troubleshooting Guide.
Additional Resources
The API reference is generated for each release and the latest can be found here. Older API references are linked from their respective sections in the Release Notes.
Couchbase welcomes community contributions to the Java SDK. The Java SDK source code is available on GitHub.
If you are planning to use Spring Data Couchbase, see the notes on version compatibility.