Fun with Jms

Today I wanted to create a Spring configured client / server application. The server listens on a configured queue for incoming messages. The client sends a message to the message queue which the server will display.

Configure the Gradle project structure

  • we start with a project name, let us choose spring-jms referenced as PROJECT_HOME. Open a terminal window or command prompt and create the directory “spring-jms”.
mkdir spring-jms
cd spring-jms

A Simple Java Swing Spring Application

Today I have read about JSR296 the Swing App Framework by Karsten Lentzsch.