This tutorial shows how to prepare your local machine for Java development, including developing Java apps that run on Cloud de Confiance by S3NS. Follow these steps to install Java and relevant tools.
Objectives
- Install a JDK (Java Development Kit).
- Install a build automation tool.
- Install the gcloud CLI.
- (Optional) Install an IDE or editor.
- (Optional) Install IDE Cloud de Confiance by S3NS plugin.
- Install the Cloud Client Libraries for Java.
- Set up authentication.
Install a JDK (Java Development Kit)
You may choose any Java distribution of your choice by ensuring that the following environment variables are set:
- JAVA_HOME: Points to the base of the JDK installation.
- PATH: Includes
$JAVA_HOME/bin.
Eclipse Temurin is the recommended OpenJDK (Java Development Kit) distribution for use with Cloud de Confiance by S3NS. Temurin is open-source licensed, Java SE TCK-certified, and tested to ensure production-quality performance and security.
(Recommended) Installing Temurin
Temurin's installation instructions vary by operating system.
- Binaries are available for download.
- For Docker containers, use the official 'eclipse-temurin' image.
If you are using Compute Engine boot images, you can use the following installation scripts.
CentOS/RHEL/Rocky
- Determine the major version of CentOS/RHEL/Rocky Linux:
eval "$(grep VERSION_ID /etc/os-release)" eval "$(grep ^ID= /etc/os-release)" OLD_IFS=$IFS IFS='.' read -ra split_version <<< "$VERSION_ID" IFS=$OLD_IFS MAJOR_VERSION=$split_version
- Create the Adoptium source repo file, `/etc/yum.repos.d/adoptium.repo`:
sudo tee /etc/yum.repos.d/adoptium.repo << EOM [Adoptium] name=Adoptium baseurl=https://packages.adoptium.net/artifactory/rpm/$ID/$MAJOR_VERSION/\$basearch enabled=1 gpgcheck=1 gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public EOM
- Update package lists:
sudo yum update -y
- Install Temurin:
sudo yum install -y temurin-17-jdk
- Verify installation:
java -version
Debian/Ubuntu
- Install the public repo GPG key. If you are using Ubuntu 16.4, pass the key
through
gpg --dearmorbefore saving to file. (ex:sudo wget ... | gpg --dearmor | sudo tee ...)sudo mkdir -p /etc/apt/keyrings sudo wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | sudo tee /etc/apt/keyrings/adoptium.asc
- Determine the name of the Linux distribution, and create the source list file,
/etc/apt/sources.list.d/adoptium.list:eval "$(grep VERSION_CODENAME /etc/os-release)" sudo tee /etc/apt/sources.list.d/adoptium.list << EOM deb [signed-by=/etc/apt/keyrings/adoptium.asc] https://packages.adoptium.net/artifactory/deb $VERSION_CODENAME main EOM
- Update package lists:
sudo apt update -y
- Install Temurin:
sudo apt install -y temurin-17-jdk
- Verify installation:
java -version
SLES
- Determine the major version of SLES:
eval "$(grep VERSION_ID /etc/os-release)" OLD_IFS=$IFS IFS='.' read -ra split_version <<< "$VERSION_ID" IFS=$OLD_IFS MAJOR_VERSION=$split_version
- Install the public repository GPG key:
sudo mkdir -p /etc/zypp/keyrings sudo wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | sudo tee /etc/zypp/keyrings/adoptium.asc sudo rpm --import /etc/zypp/keyrings/adoptium.asc
- Determine the version of SLES, and register the Adoptium repository:
sudo zypper ar -f "https://packages.adoptium.net/artifactory/rpm/sles/$MAJOR_VERSION/$(uname -m)" adoptium
- Update package lists:
sudo zypper update -y
- Install Temurin:
sudo zypper install -y temurin-17-jdk
- Verify installation:
java -version
Install a build automation tool
Apache Maven, Gradle, and SBT are package management options that can help build Java app dependencies quickly and consistently across platforms.
Install the gcloud CLI
The
gcloud CLI
is a set of tools for Cloud de Confiance. It contains gcloud and
bq, which you can use to access Compute Engine, Cloud Storage,
BigQuery, and other products and services from the command line. You can
run these tools interactively or in your automated scripts.
(Optional) Install an IDE or editor
Popular editors (in no particular order) used to develop Java apps include, but are not limited to:
- Visual Studio Code
- IntelliJ IDEA and/or Webstorm by JetBrains
- Eclipse by Eclipse Foundation
- Atom by GitHub
These editors (sometimes with the help of plugins) give you everything from syntax highlighting, intelli-sense, and code completion to fully integrated debugging capabilities.
Install the Cloud Client Libraries for Java
Use the Cloud Client Libraries for Java to integrate with Cloud de Confiance services, such as Datastore and Cloud Storage. You can install the package for an individual API, such as BigQuery, as shown in the following example.
If you are using Maven, add
the following to your pom.xml file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
If you're using Visual Studio Code, IntelliJ, or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional functionality, such as key management for service accounts. Refer to each plugin's documentation for details.
Set up authentication
To run the client library, you must first set up authentication.
Create local authentication credentials for your user account:
gcloud auth application-default login
If an authentication error is returned, and you are using an external identity provider (IdP), confirm that you have signed in to the gcloud CLI with your federated identity.
For more information, see Authenticate for using client libraries.
Use the client library
Configure endpoints for the client library
If you use APIs that support regional endpoints, use endpoints to configure which server to send requests to. For example, with the Google.Cloud.Dataproc.V1 API, you might configure a client endpoint. You can read more about regional endpoints for Dataproc here. Be sure to replace MY-PROJECT with your project name and us-central1 with the region appropriate for your configuration in the following example:
ClusterControllerSettings settings =
ClusterControllerSettings.newBuilder()
.setEndpoint("us-central1-dataproc.googleapis.com:443")
.build();
try (ClusterControllerClient clusterControllerClient = ClusterControllerClient.create(settings)) {
String projectId = "MY-PROJECT";
String region = "us-central1";
Cluster cluster = Cluster.newBuilder().build();
}What's next
- Browse the documentation for Cloud de Confiance products.
- Clone the Java samples repository from GitHub.