Getting Started #
In this tutorial you will learn how to install and use the JVM SDK for Kuzzle. This page shows examples of scripts that store documents in Kuzzle, and of scripts that subcribe to real-time notifications for each new document created.
Before proceeding, please make sure your system meets the following requirements:
- Oracle JDK or OpenJDK version 8 or higher (OpenJDK installation instructions)
- A running Kuzzle Server (Kuzzle installation guide)
Having trouble? Get in touch with us on Discord!
Installation #
You can find the SDK JARs directly on Maven. Download and add them to your classpath.
This SDK has 2 jar files that you can use:
sdk-jvm-<version>.jar
: this is the fat jar version, containing the SDK and all its dependencies.sdk-jvm-<version>-without-dependencies.jar
: this is the thin jar version of the SDK, without any dependencies included in it.
Depending on your project, you might need one or the other version of the SDK: if you already use some of the dependencies needed by the SDK, then you need to use the thin jar version. Otherwise, you may use the fat jar one.
If you are using the thin jar, make sure to add the following dependencies:
implementation("io.ktor:ktor-client-websockets:1.5.2")
implementation("io.ktor:ktor-client-okhttp:1.5.2")
implementation("io.ktor:ktor-client-cio:1.5.2")
implementation("io.ktor:ktor-client-json:1.5.2")
implementation("io.ktor:ktor-client-gson:1.5.2")
implementation("io.ktor:ktor-client-serialization:1.5.2")
implementation("com.google.code.gson:gson:2.8.5")
The following examples are made to be executed without any IDE. If you're using Eclipse, IntelliJ or another Java IDE, you need to add the SDK as a project dependency in your classpath.
Installing for Android projects using gradle #
To build the project, add the following lines:
Maven #
<dependency>
<groupId>io.kuzzle</groupId>
<artifactId>sdk-jvm</artifactId>
<version>1.3.2</version>
<type>pom</type>
</dependency>
Gradle #
dependencies {
compile 'io.kuzzle:sdk-jvm:1.3.2'
}
Ivy #
<dependency org='io.kuzzle' name='sdk-jvm' rev='1.3.2'>
<artifact name='sdk-jvm' ext='pom' ></artifact>
</dependency>
First connection #
Initialize a new Java project, create a GettingStartedFirstConnection.java
file and start by adding the code below:
import io.kuzzle.sdk.*;
import io.kuzzle.sdk.protocol.WebSocket;
import java.util.*;
public class SnippetTest {
private static Kuzzle kuzzle;
public static void main(String[] args) {
// @start
try {
// Creates a WebSocket connection.
// Replace "kuzzle" with
// your Kuzzle hostname like "localhost"
WebSocket ws = new WebSocket("kuzzle");
// Instantiates a Kuzzle client
kuzzle = new Kuzzle(ws);
// Connects to the server.
kuzzle.connect();
System.out.println("Connected!");
} catch(Exception e){
e.printStackTrace();
}
// Freshly installed Kuzzle servers are empty: we need to create
// a new index.
try {
kuzzle.getIndexController().create("nyc-open-data").get();
System.out.println("Index nyc-open-data created!");
} catch(Exception e){
e.printStackTrace();
}
// Creates a collection
try {
kuzzle.getCollectionController().create("nyc-open-data", "yellow-taxi").get();
System.out.println("Collection yellow-taxi created!");
} catch(Exception e){
e.printStackTrace();
}
// Disconnects the SDK
kuzzle.disconnect();
// @end
}
}
If you're not yet familiar with how Kuzzle structures its storage, check our detailed guide
This program initializes the Kuzzle Server storage by creating an index and a collection. Run the program with the following command:
$ javac -classpath ./path/to/the/sdk.jar GettingStartedFirstConnection.java
$ java -classpath .:./path/to/the/sdk.jar GettingStartedFirstConnection
Connected!
Index nyc-open-data created!
Collection yellow-taxi created!
You now know how to:
- Instantiate the Kuzzle SDK and connect to a Kuzzle Server using a specific network protocol (here
websocket
) - Create an index
- Create a collection within an existing index
Create your first document #
Now that you successfully connected to your Kuzzle Server instance, and created an index and a collection, it's time to manipulate documents.
Create a GettingStartedStorage.java
file in the playground and add this code:
import io.kuzzle.sdk.*;
import io.kuzzle.sdk.protocol.WebSocket;
import java.util.*;
public class SnippetTest {
private static Kuzzle kuzzle;
public static void main(String[] args) {
// @start
try {
// Creates a WebSocket connection.
// Replace "kuzzle" with
// your Kuzzle host name (e.g. "localhost")
WebSocket ws = new WebSocket("kuzzle");
// Instantiates a Kuzzle client
kuzzle = new Kuzzle(ws);
// Connects to the server.
kuzzle.connect();
System.out.println("Connected!");
} catch(Exception e){
e.printStackTrace();
}
// New document content
Map<String, Object> content = new HashMap<>();
content.put("name", "John");
content.put("birthday", "1995-11-27");
content.put("license", "B");
// Stores the document in the "yellow-taxi" collection.
try {
kuzzle.getDocumentController()
.create( "nyc-open-data", "yellow-taxi", content).get();
System.out.println("New document added to the yellow-taxi collection!");
} catch(Exception e){
e.printStackTrace();
}
// Disconnects the SDK.
kuzzle.disconnect();
// @end
}
}
As you did before, build and run your program:
$ javac -classpath ./path/to/the/sdk.jar GettingStartedStorage.java
$ java -classpath .:./path/to/the/sdk.jar GettingStartedStorage
Connected!
New document added to the yellow-taxi collection!
Many other actions are available to manipulate stored documents. You can check the exhaustive list in the Document Controller documentation.
Now you know how to:
- Store documents in a Kuzzle Server, and access to those
Subscribe to realtime document notifications (pub/sub) #
Time to use Kuzzle's realtime capabilities. Create a new file GettingStartedRealtime.java
with the following code:
import io.kuzzle.sdk.*;
import io.kuzzle.sdk.protocol.WebSocket;
import java.util.*;
public class SnippetTest {
private static Kuzzle kuzzle;
public static void main(String[] args) {
// @start
try {
// Creates a WebSocket connection.
// Replace "kuzzle" with
// your Kuzzle hostname like "localhost"
WebSocket ws = new WebSocket("kuzzle");
// Instantiates a Kuzzle client
kuzzle = new Kuzzle(ws);
// Connects to the server.
kuzzle.connect();
System.out.println("Connected!");
} catch (Exception e) {
e.printStackTrace();
}
// Subscribes to notifications for drivers having a "B" driver license.
Map<String, Object> filters = new HashMap<>();
Map<String, Object> equals = new HashMap<>();
equals.put("license", "B");
filters.put("equals", equals);
try {
// Sends the subscription
kuzzle.getRealtimeController()
.subscribe("nyc-open-data", "yellow-taxi", filters, notification -> {
Map<String, Object> content = ((Map<String, Object>)(notification.getResult()));
System.out.println("New created document notification: " + content);
/*
{
_source={
birthday=1995-11-27,
license=B,
name=John,
_kuzzle_info={
createdAt=1605694059151,author=-1
}
},
_id=9PDS2nUBeGNr7nwl8j2Q,
_version=1
}
*/
}).get();
System.out.println("Successfully subscribed!");
} catch (Exception e) {
e.printStackTrace();
}
// Writes a new document. This triggers a notification
// sent to our subscription.
Map<String, Object> content = new HashMap<>();
content.put("name", "John");
content.put("birthday", "1995-11-27");
content.put("license", "B");
try {
kuzzle.getDocumentController()
.create("nyc-open-data", "yellow-taxi", content).get();
System.out.println("New document added to the yellow-taxi collection!");
} catch (Exception e) {
e.printStackTrace();
}
// Disconnects the SDK.
kuzzle.disconnect();
// @end
}
}
This program subscribes to changes made to documents with a license
field set to B
, within the yellow-taxi
collection. Whenever a document matching the provided filters changes, a new notification is received from Kuzzle.
Build and run your program:
$ javac -classpath ./path/to/the/sdk.jar GettingStartedRealtime.java
$ java -classpath .:./path/to/the/sdk.jar GettingStartedRealtime
Connected!
Successfully subscribing!
New document added to yellow-taxi collection!
New created document notification:
{
_source={
birthday=1995-11-27,
license=B,
name=John,
_kuzzle_info={
createdAt=1605694059151,author=-1
}
},
_id=9PDS2nUBeGNr7nwl8j2Q,
_version=1
}
You should see the document content as a Map
.
Now, you know how to:
- Create realtime filters
- Subscribe to notifications
Where do we go from here? #
Now that you're more familiar with the JVM SDK, you can dive even deeper to learn how to leverage its full capabilities:
- discover what this SDK has to offer by browsing other sections of this documentation
- learn how to use pagination strategies with the document:search API action.
- discover other Kuzzle guides