alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

ActiveMQ example source code file (README.txt)

This example ActiveMQ source code file (README.txt) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - ActiveMQ tags/keywords

activemq, activemq, demo, dpassword=supersecret, each, if, if, it, jvm, the, the, transactions, tutorial, you

The ActiveMQ README.txt source code

Transactions Demo
=================
This example is an ActiveMQ implementation of the "TransactedExample" from
Sun's JMS Tutorial (http://java.sun.com/products/jms/tutorial/index.html).

The example simulates a simplified eCommerce application with four parts:
the retailer who places the orders, the vendor who assemples the computers,
and two suppliers--one for hard drives and another for monitors.

The retailer sends a message to the vendor's queue and awaits a reply.
The vendor receives the message and sends a message to each of the
supplier's queues. It does this in a single transaction, and will randomly
throw an exception simulating a database error, triggering a rollback.
Each supplier receives the order, checks inventory and replies to the
message stating how many items were sent.
The vendor collects both responses and responds to the retailer, notifying
wheather it cna fulfill the complete order or not.
The retailer receives the message from the vendor.

Running the Example
===================
To run the complete demo in a single JVM, with ActiveMQ running on the local
computer:
  ant transactions_demo

If you are running ActiveMQ on a non-standard port, or on a different host,
you can pass a url on the commandline:
  ant -Durl=tcp://localhost:61616 transactions_demo

If your ActiveMQ instance is password-protected, you can also pass a
username and password on the command line:
  ant -Duser=myusername -Dpassword=supersecret transactions_demo

You can also run the individual components seperately, again with optional
url and/or authentication parameters:
  ant retailer &
  ant vendor &
  ant hdsupplier &
  ant monitorsupplier &

Other ActiveMQ examples (source code examples)

Here is a short list of links related to this ActiveMQ README.txt source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.