Skip to content

SolaceSamples/solace-samples-java-jcsmp

Repository files navigation

Getting Started Examples

Solace Messaging API for Java JCSMP

The "Getting Started" tutorials will get you up to speed and sending messages with Solace technology as quickly as possible. There are three ways you can get started:

  • Follow these instructions to quickly spin up a cloud-based Solace messaging service for your applications.
  • Follow these instructions to start the Solace VMR in leading Clouds, Container Platforms or Hypervisors. The tutorials outline where to download and how to install the Solace VMR.
  • If your company has Solace message routers deployed, contact your middleware team to obtain the host name or IP address of a Solace message router to test against, a username and password to access it, and a VPN in which you can produce and consume messages.

Contents

This repository contains code and matching tutorial walk-throughs for five different basic Solace messaging patterns. For a nice introduction to the Solace API and associated tutorials, check out the tutorials home page.

See the individual tutorials for details:

Prerequisites

This tutorial requires the Solace Java API library. Download the Java API library to your computer from here.

Build the Samples

Just clone and build. For example:

  1. clone this GitHub repository
git clone https://github.com/SolaceSamples/solace-samples-java-jcsmp
cd solace-samples-java-jcsmp
  1. Build samples
./gradlew assemble

Running the Samples

To try individual samples, build the project from source and then run samples like the following:

cd build/staged
bin/DirectSubscriber <host:port> <message-vpn> <client-username> [password]
bin/DirectPublisher <host:port> <message-vpn> <client-username> [password]

The individual tutorials linked above provide full details which can walk you through the samples, what they do, and how to correctly run them to explore Solace messaging.

Exploring the Samples

Setting up your preferred IDE

Using a modern Java IDE provides cool productivity features like auto-completion, on-the-fly compilation, assisted refactoring and debugging which can be useful when you're exploring the samples and even modifying the samples. Follow the steps below for your preferred IDE.

Using Eclipse

To generate Eclipse metadata (.classpath and .project files), do the following:

./gradlew eclipse

Once complete, you may then import the projects into Eclipse as usual:

File -> Import -> Existing projects into workspace

Browse to the 'solace-samples-java-jcsmp' root directory. All projects should import free of errors.

Using IntelliJ IDEA

To generate IDEA metadata (.iml and .ipr files), do the following:

./gradlew idea

JCSMP API Logging and log4j2

The Solace JCSMP API uses Apache Commons Logging (JCL) (formerly Jarkarta Commons Logging), and is therefore compatible to use with logging frameworks like log4j2. Specifically, these samples use the Commons Logging Bridge to bridge logging data from JCL to log4j2.

You can see the required log4j2 dependencies inside the build.gradle file, and the configuration file in src/dist/config/. Log4j2 easily allows you to configure various outputs such as console, file, and many others (e.g. JMS!) for all of the JCSMP API logs.

It is best practice to ensure whatever logging implementation you use, that it is configurable at runtime without having to recompile and redeploy.

In the included log configuration file src/dist/config/log4j2.xml there are various logging levels that can be configured using JVM system variables. For example, use -Djcsmp_api_log_level=debug to set the API logging to debug. If using the Gradle run scripts, use the convinience environment variable JAVA_OPTS. E.g.:

export JAVA_OPTS=-Djcsmp_api_log_level=debug

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

See the list of contributors who participated in this project.

License

This project is licensed under the Apache License, Version 2.0. - See the LICENSE file for details.

Resources

For more information try these resources: