This tutorial shows you how build a simple Hello World Java application with CockroachDB and the JDBC driver.
Step 1. Start CockroachDB
Create a free cluster
- If you haven't already, sign up for a CockroachCloud account.
- Log in to your CockroachCloud account.
- On the Clusters page, click Create Cluster.
On the Create your cluster page, select CockroachCloud Free.
Note:This cluster will be free forever.
(Optional) Select a cloud provider (GCP or AWS) in the Additional configuration section.
(Optional) Select a region in the Additional configuration section. For optimal performance, select the cloud provider region closest to the region in which you are running your application.
Click Create your free cluster.
Your cluster will be created in approximately 20-30 seconds.
Set up your cluster connection
Navigate to the cluster's SQL Users page, and create a new user, with a new password.
Navigate to the Cluster Overview page, select Connect, and, under the Connection String tab, download the cluster certificate.
Take note of the connection string provided. You'll use it to connect to the database later in this tutorial.
- If you haven't already, download the CockroachDB binary.
Run the
cockroach start-single-node
command:$ cockroach start-single-node --advertise-addr 'localhost' --insecure
This starts an insecure, single-node cluster.
Take note of the following connection information in the SQL shell welcome text:
CockroachDB node starting at 2021-08-30 17:25:30.06524 +0000 UTC (took 4.3s) build: CCL v21.1.6 @ 2021/07/20 15:33:43 (go1.15.11) webui: http://localhost:8080 sql: postgresql://root@localhost:26257?sslmode=disable
You'll use the
sql
connection string to connect to the cluster later in this tutorial.
The --insecure
flag used in this tutorial is intended for non-production testing only. To run CockroachDB in production, use a secure cluster instead.
Step 2. Get the code
Clone the code's GitHub repo:
$ git clone https://github.com/cockroachlabs/hello-world-java-jdbc/
Check out the cockroachcloud
branch:
git checkout cockroachcloud
The app/src/main/java/example/app/App.java
file contains all of the code for the sample Hello World app:
package example.app;
import org.postgresql.ds.PGSimpleDataSource;
public class App {
public static void main(String[] args) {
try {
PGSimpleDataSource ds = new PGSimpleDataSource();
ds.setServerNames(new String[]{"localhost"});
ds.setPortNumbers(new int[]{26257});
ds.setDatabaseName("defaultdb");
ds.setUser("root");
ds.setSsl(false);
ds.setSslMode("disable");
ds.setApplicationName("App");
System.out.println("Hey! You connected to your CockroachDB cluster.");
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
The main
method of this program does the following:
- Attempts to connect to a running cluster, given some connection information.
- Prints a message to the terminal about the connection status.
Step 3. Run the code
Update the connection parameters
In a text editor modify app/src/main/java/example/app/App.java
with the settings to connect to the cluster:
ds.setServerNames(new String[]{"{globalhost}"});
ds.setDatabaseName("{cluster_name}.defaultdb");
ds.setUser("{username}");
ds.setPassword("{password}");
ds.setSslRootCert(System.getenv("{path to the CA certificate}"));
Where:
{username}
and{password}
specify the SQL username and password that you created earlier.{globalhost}
is the name of the CockroachCloud free tier host (e.g.,free-tier.gcp-us-central1.cockroachlabs.cloud
).{path to the CA certificate}
is the path to thecc-ca.crt
file that you downloaded from the CockroachCloud Console.{cluster_name}
is the name of your cluster.
If you are using the connection string that you copied from the Connection info modal, your username, password, hostname, and cluster name will be pre-populated.
For guidance on connection pooling, with an example using JDBC and HikariCP, see Connection Pooling.
Compile and run the code:
./gradlew run
The app will prompt you for the password to the demo cluster:
> Task :app:run
Enter the demo password:
<=========----> 75% EXECUTING [22s]
Enter the password.
The output should look like this:
Hey! You successfully connected to your CockroachDB cluster.
See also
You might also be interested in the following pages: