What is it?
This quickstart demonstrates the use of JMS clients with JBoss Enterprise Application Platform 6 or JBoss AS 7 using DeltaSpike configuration properties.
It contains the following:
A message producer that sends messages to a JMS destination deployed to a JBoss Enterprise Application Platform 6 or JBoss AS 7 server.
A message consumer that receives message from a JMS destination deployed to a JBoss Enterprise Application Platform 6 or JBoss AS 7 server.
System requirements
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
The application this project produces is designed to be run on JBoss Enterprise Application Platform 6 or JBoss AS 7.
Configure Maven
If you have not yet done so, you must Configure Maven before testing the quickstarts.
Add an Application User
This quickstart uses secured management interfaces and requires that you create an application user to access the running application. Instructions to set up the quickstart application user can be found here: Add an Application User
Configure the JBoss Enterprise Application Platform 6 server
If you are using the JBoss AS 7 Quickstart distribution, the server configuration file already contains the JMS test queue and you can skip this step.
However, if you are using the JBoss Enterprise Application Platform 6 distribution, you need to add the JMS test queue and topic to the application server configuration file. You can configure JMS using the JBoss CLI or by manually editing the configuration file.
Modify the Server JMS Configuration using the JBoss CLI Tool
-
Start the JBoss Enterprise Application Platform 6 or JBoss AS 7 Server by typing the following:
For Linux: JBOSS_HOME_SERVER_1/bin/standalone.sh -c standalone-full.xml For Windows: JBOSS_HOME_SERVER_1\bin\standalone.bat -c standalone-full.xml -
To start the JBoss CLI tool, open a new command line, navigate to the JBOSS_HOME directory, and type the following:
For Linux: bin/jboss-cli.sh --connect For Windows: bin\jboss-cli.bat --connect -
At the prompt, type the following:
[standalone@localhost:9999 /] jms-queue add --queue-address=testQueue --entries=queue/test,java:jboss/exported/jms/queue/test [standalone@localhost:9999 /] jms-topic add --topic-address=testTopic --entries=topic/test,java:jboss/exported/jms/topic/test
Modify the Server JMS Configuration Manually (Server must be stopped)
- Open the file: JBOSS_HOME/standalone/configuration/standalone-full.xml
- Add the JMS
testqueue as follows:-
Find the messaging subsystem:
<subsystem xmlns="urn:jboss:domain:messaging:1.1"> -
Scroll to the end of this section and add the following XML after the
</jms-connection-factories>end tag but before the</hornetq-server>element:<jms-destinations> <jms-queue name="testQueue"> <entry name="queue/test"/> <entry name="java:jboss/exported/jms/queue/test"/> </jms-queue> <jms-topic name="testTopic"> <entry name="topic/test"/> <entry name="java:jboss/exported/jms/topic/test"/> </jms-topic> </jms-destinations> - Save the changes and close the file.
-
Start JBoss Enterprise Application Platform 6 or JBoss AS 7 with the Full Profile
- Open a command line and navigate to the root of the JBoss server directory.
-
The following shows the command line to start the server with the full profile:
For Linux: JBOSS_HOME/bin/standalone.sh -c standalone-full.xml For Windows: JBOSS_HOME\bin\standalone.bat -c standalone-full.xml
Build and Deploy the Quickstart
NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See Build and Deploy the Quickstarts for complete instructions and additional options.
- Make sure you have started the JBoss Server as described above.
- Open a command line and navigate to the root directory of this quickstart.
-
Type this command to build and deploy the archive:
mvn clean package jboss-as:deploy - This will deploy
target/jboss-as-deltaspike-helloworld-jms.warto the running instance of the server.
Access the application
Access the running application in a browser at the following URL: http://localhost:8080/jboss-as-deltaspike-helloworld-jms/
- You are presented with a simple form that has some values already filled.
- Click on
Send Messagesbutton. - Investigate the Console Output
If the command is successful, with the default configuration you will see output similar to this:
08:46:52,961 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Attempting to acquire connection factory "jms/RemoteConnectionFactory"
08:46:53,041 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Found connection factory "jms/RemoteConnectionFactory" in JNDI
08:46:53,041 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Attempting to acquire destination "jms/queue/test"
08:46:53,050 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Found destination "jms/queue/test" in JNDI
08:46:53,151 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Sending 1 messages with content: Hello, World from Deltaspike!
08:46:53,164 INFO [org.jboss.as.quickstarts.jms.controller.JmsClientController] (http--127.0.0.1-8080-2) Received message #1 with content: Hello, World from Deltaspike!
Note: After the above INFO message, you may see the following error. You can ignore the error as it is a well known error message and does not indicate the maven command was unsuccessful in any way.
08:46:53,168 ERROR [org.jboss.naming.remote.protocol.v1.RemoteNamingStoreV1] (Remoting "config-based-naming-client-endpoint" task-3) Channel end notification received, closing channel Channel ID f777fa41 (outbound) of Remoting connection 45f04731 to null
Optional Properties
This quickstart uses DeltaSpike to inject properties configuration.
The configuration is injected by using the @ConfigProperty annotation
@Inject
@ConfigProperty(name = "username", defaultValue = "quickstartUser")
private String usernameConfig;
The following properties can be configured:
-
usernameThis username is used for both the JMS connection and the JNDI look-up. Instructions to set up the quickstart application user can be found here: Add an Application User.
Default:
quickstartUser -
passwordThis password is used for both the JMS connection and the JNDI look-up. Instructions to set up the quickstart application user can be found here: Add an Application User
Default:
quickstartPwd1! -
connection.factoryThe name of the JMS ConnectionFactory you want to use.
Default:
jms/RemoteConnectionFactory -
destinationThe name of the JMS Destination you want to use.
Default:
jms/queue/test -
message.countThe number of JMS messages you want to produce and consume.
Default:
1 -
message.contentThe content of the JMS TextMessage.
Default:
"Hello, World!" -
java.naming.provider.urlThis property allows configuration of the JNDI directory used to lookup the JMS destination. This is useful when the client resides on another host.Default:
"localhost"
You can overwrite these properties by adding the value that you want on file src/main/resources/META-INF/apache-deltaspike.properties
Undeploy the Archive
- Make sure you have started the JBoss Server as described above.
- Open a command line and navigate to the root directory of this quickstart.
-
When you are finished testing, type this command to undeploy the archive:
mvn jboss-as:undeploy
Run the Quickstart in JBoss Developer Studio or Eclipse
You can also start the server and deploy the quickstarts from Eclipse using JBoss tools. For more information, see Use JBoss Developer Studio or Eclipse to Run the Quickstarts
Debug the Application
If you want to debug the source code or look at the Javadocs of any library in the project, run either of the following commands to pull them into your local repository. The IDE should then detect them.
mvn dependency:sources
mvn dependency:resolve -Dclassifier=javadoc
Share the Knowledge
Find this guide useful?
Feedback
Find a bug in the guide? Something missing? You can fix it by forking the repository, making the correction and sending a pull request. If you're just plain stuck, feel free to ask a question in the user discussion forum.
Recent Changelog
- Mar 05, 2013: Rewrite quickstart to be a web app Rafael Benevides
- Feb 12, 2013: Add quickstart source repository of record to the readme files Sande Gilda
- Jan 22, 2013: Fix for issue 404 - meet new minimum password requirements Sande Gilda
- Dec 12, 2012: Jdf-144: add deltaspike-helloworld-jms example, a version of helloworld-jms that uses deltaspike Sande Gilda