Skip to content

A sample application to connect Open Liberty and IBM MQ using JMS.

License

Notifications You must be signed in to change notification settings

epomatti/openliberty-jakartaee-jms-ibmmq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Open Liberty - JMS & IBM MQ

Maven

A sample application that uses Open Liberty to connect to IBM MQ to enqueue & dequeue messages.

Updated to use Jakarta 9.1 and IBM MQ 9.3

Setup

For this project you'll need to install the following requirements:

Running it

Pull and start the IBM MQ docker container:

docker pull icr.io/ibm-messaging/mq:latest

docker run --env LICENSE=accept \
  --env MQ_QMGR_NAME=QM1 \
  --publish 1414:1414 \
  --detach \
  --env MQ_APP_PASSWORD=passw0rd \
  --name QM1 icr.io/ibm-messaging/mq:latest

Since 9.2.5.0 new MQ images will be published to IBM's registry.

Install the dependencies and start OpenLiberty:

mvn install
mvn liberty:dev

Once the server is running, send a message to the queue:

curl -X POST -d 'msg=test message' http://localhost:9080/libertymq/api/enqueue

Versions

Implementation / tests performed with the latest/LTS versions of all components:

  • openjdk 17.0.3 2022-04-19
  • Jakarta EE 9.1
  • Apache Maven 3.8.6
  • OpenLibery 22.0.0.7
  • IBM MQ & Resource Adapter 9.3.0.0

ℹ️ For convenience I'm versioning the adapter here. But you should get your specific version from Fix Central, following guidelines such as in this procedure for your particular version.

Sources

https://developer.ibm.com/tutorials/mq-connect-app-queue-manager-containers/
https://www.ibm.com/docs/en/was-liberty/nd?topic=dmal-deploying-jms-applications-liberty-use-mq-messaging-provider
https://developer.ibm.com/tutorials/mq-develop-mq-jms/
https://aguibert.github.io/openliberty-cheat-sheet/

Releases

No releases published

Packages

No packages published

Languages