PageRenderTime 51ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/helloworld-mdb/README.md

https://gitlab.com/ThomasHunt3r/jboss-eap-quickstarts
Markdown | 224 lines | 134 code | 90 blank | 0 comment | 0 complexity | ce7b754ba20aadab1ffba9da8e7b3484 MD5 | raw file
  1. helloworld-mdb: Helloword Using an MDB (Message-Driven Bean)
  2. ============================================================
  3. Author: Serge Pagop, Andy Taylor, Jeff Mesnil
  4. Level: Intermediate
  5. Technologies: JMS, EJB, MDB
  6. Summary: Demonstrates the use of JMS 1.1 and EJB 3.1 Message-Driven Bean
  7. Target Product: EAP
  8. Product Versions: EAP 6.1, EAP 6.2, EAP 6.3, EAP 6.4
  9. Source: <https://github.com/jboss-developer/jboss-eap-quickstarts/>
  10. What is it?
  11. -----------
  12. This example demonstrates the use of *JMS 1.1* and *EJB 3.1 Message-Driven Bean* in Red Hat JBoss Enterprise Application Platform.
  13. This project creates two JMS resources:
  14. * A queue named `HELLOWORLDMDBQueue` bound in JNDI as `java:/queue/HELLOWORLDMDBQueue`
  15. * A topic named `HELLOWORLDMDBTopic` bound in JNDI as `java:/topic/HELLOWORLDMDBTopic`
  16. System requirements
  17. -------------------
  18. The application this project produces is designed to be run on Red Hat JBoss Enterprise Application Platform 6.1 or later.
  19. All you need to build this project is Java 6.0 (Java SDK 1.6) or later, Maven 3.0 or later.
  20. Configure Maven
  21. ---------------
  22. If you have not yet done so, you must [Configure Maven](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/CONFIGURE_MAVEN.md#configure-maven-to-build-and-deploy-the-quickstarts) before testing the quickstarts.
  23. Start the JBoss EAP Server with the Full Profile
  24. ---------------
  25. 1. Open a command prompt and navigate to the root of the JBoss EAP directory.
  26. 2. The following shows the command line to start the server with the full profile:
  27. For Linux: EAP_HOME/bin/standalone.sh -c standalone-full.xml
  28. For Windows: EAP_HOME\bin\standalone.bat -c standalone-full.xml
  29. Build and Deploy the Quickstart
  30. -------------------------
  31. _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](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._
  32. 1. Make sure you have started the JBoss EAP server as described above.
  33. 2. Open a command prompt and navigate to the root directory of this quickstart.
  34. 3. Type this command to build and deploy the archive:
  35. mvn clean install jboss-as:deploy
  36. 4. This will deploy `target/jboss-helloworld-mdb.war` to the running instance of the server. Look at the JBoss EAP console or Server log and you should see log messages corresponding to the deployment of the message-driven beans and the JMS destinations:
  37. 14:11:01,020 INFO org.hornetq.core.server.impl.HornetQServerImpl trying to deploy queue jms.queue.HELLOWORLDMDBQueue
  38. 14:11:01,029 INFO org.jboss.as.messaging JBAS011601: Bound messaging object to jndi name java:/queue/HELLOWORLDMDBQueue
  39. 14:11:01,030 INFO org.hornetq.core.server.impl.HornetQServerImpl trying to deploy queue jms.topic.HELLOWORLDMDBTopic
  40. 14:11:01,060 INFO org.jboss.as.ejb3 JBAS014142: Started message driven bean 'HelloWorldQueueMDB' with 'hornetq-ra' resource adapter
  41. 14:11:01,060 INFO org.jboss.as.ejb3 JBAS014142: Started message driven bean 'HelloWorldQTopicMDB' with 'hornetq-ra' resource adapter
  42. 14:11:01,070 INFO org.jboss.as.messaging JBAS011601: Bound messaging object to jndi name java:/topic/HELLOWORLDMDBTopic
  43. Access the application
  44. ---------------------
  45. The application will be running at the following URL: <http://localhost:8080/jboss-helloworld-mdb/> and will send some messages to the queue.
  46. To send messages to the topic, use the following URL: <http://localhost:8080/jboss-helloworld-mdb/HelloWorldMDBServletClient?topic>
  47. Investigate the Server Console Output
  48. -------------------------
  49. Look at the JBoss EAP console or Server log and you should see log messages like the following:
  50. 17:51:52,122 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-1 (HornetQ-client-global-threads-26912020)) Received Message from queue: This is message 1
  51. 17:51:52,123 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-11 (HornetQ-client-global-threads-26912020)) Received Message from queue: This is message 2
  52. 17:51:52,124 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-12 (HornetQ-client-global-threads-26912020)) Received Message from queue: This is message 5
  53. 17:51:52,135 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-13 (HornetQ-client-global-threads-26912020)) Received Message from queue: This is message 4
  54. 17:51:52,136 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-14 (HornetQ-client-global-threads-26912020)) Received Message from queue: This is message 3
  55. Undeploy the Archive
  56. --------------------
  57. 1. Make sure you have started the JBoss EAP server as described above.
  58. 2. Open a command prompt and navigate to the root directory of this quickstart.
  59. 3. When you are finished testing, type this command to undeploy the archive:
  60. mvn jboss-as:undeploy
  61. Run the Quickstart in JBoss Developer Studio or Eclipse
  62. -------------------------------------
  63. You can also start the server and deploy the quickstarts or run the Arquillian tests from Eclipse using JBoss tools. For more information, see [Use JBoss Developer Studio or Eclipse to Run the Quickstarts](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/USE_JDBS.md#use-jboss-developer-studio-or-eclipse-to-run-the-quickstarts)
  64. _NOTE:_ Within JBoss Developer Studio, be sure to define a server runtime environment that uses the `standalone-full.xml` configuration file.
  65. Debug the Application
  66. ------------------------------------
  67. If you want to debug the source code of any library in the project, run the following command to pull the source into your local repository. The IDE should then detect it.
  68. mvn dependency:sources
  69. Build and Deploy the Quickstart - to OpenShift
  70. -------------------------
  71. ### Create an OpenShift Account and Domain
  72. If you do not yet have an OpenShift account and domain, [Sign in to OpenShift](https://openshift.redhat.com/app/login) to create the account and domain. [Get Started with OpenShift](https://openshift.redhat.com/app/getting_started) will show you how to install the OpenShift Express command line interface.
  73. ### Create the OpenShift Application
  74. _NOTE_: The domain name for this application will be `helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com`. In these instructions, be sure to replace all instances of `YOUR_DOMAIN_NAME` with your own OpenShift account user name.
  75. Open a shell command prompt and change to a directory of your choice. Enter the following command to create a JBoss EAP 6 application:
  76. rhc app create -a helloworldmdb -t jbosseap-6
  77. This command creates an OpenShift application called `helloworldmdb` and will run the application inside the `jbosseap-6`. You should see some output similar to the following:
  78. Application Options
  79. -------------------
  80. Namespace: YOUR_DOMAIN_NAME
  81. Cartridges: jbosseap-6 (addtl. costs may apply)
  82. Gear Size: default
  83. Scaling: no
  84. Creating application 'helloworldmdb' ... done
  85. Waiting for your DNS name to be available ... done
  86. Cloning into 'helloworldmdb'...
  87. Warning: Permanently added the RSA host key for IP address '54.237.58.0' to the list of known hosts.
  88. Your application 'helloworldmdb' is now available.
  89. URL: http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/
  90. SSH to: 52864af85973ca430200006f@helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com
  91. Git remote: ssh://52864af85973ca430200006f@helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/~/git/helloworldmdb.git/
  92. Cloned to: CURRENT_DIRECTORY/helloworldmdb
  93. Run 'rhc show-app helloworldmdb' for more details about your app.
  94. The create command creates a git repository in the current directory with the same name as the application, in this case, `helloworldmdb`. Notice that the output also reports the URL at which the application can be accessed. Make sure it is available by typing the published url <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/> into a browser or use command line tools such as curl or wget. Be sure to replace `YOUR_DOMAIN_NAME` with your OpenShift account domain name.
  95. ### Migrate the Quickstart Source
  96. Now that you have confirmed it is working you can migrate the quickstart source. You do not need the generated default application, so navigate to the new git repository directory and tell git to remove the source and pom files:
  97. cd helloworldmdb
  98. git rm -r src pom.xml
  99. Copy the source for the `helloworld-mdb` quickstart into this new git repository:
  100. cp -r QUICKSTART_HOME/helloworld-mdb/src .
  101. cp QUICKSTART_HOME/helloworld-mdb/pom.xml .
  102. ### Configure the OpenShift Server
  103. HornetQ is enabled by default in `.openshift/config/standalone.xml`. There is nothing to do to be able to send and receive messages from OpenShift.
  104. ### Deploy the OpenShift Application
  105. You can now deploy the changes to your OpenShift application using git as follows:
  106. git add src pom.xml .openshift
  107. git commit -m "helloworld-mdb quickstart on OpenShift"
  108. git push
  109. The final push command triggers the OpenShift infrastructure to build and deploy the changes.
  110. Note that the `openshift` profile in the `pom.xml` file is activated by OpenShift. This causes the WAR built by OpenShift to be copied to the `deployments/` directory and deployed without a context path.
  111. ### Test the OpenShift Application
  112. When the push command returns you can test the application by getting the following URL either via a browser or using tools such as curl or wget. Be sure to replace the `YOUR_DOMAIN_NAME` in the URL with your OpenShift account domain name.
  113. * <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/> to send messages to the queue
  114. * <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/HelloWorldMDBServletClient?topic> to send messages to the topic
  115. If the application has run succesfully you should see some output in the browser.
  116. You can use the OpenShift command line tools or the OpenShift web console to discover and control the application.
  117. ### View the JBoss EAP Server Log on OpenShift
  118. Now you can look at the output of the server by running the following command:
  119. rhc tail -a helloworldmdb
  120. This will show the tail of the JBoss EAP server log, which should show something like the following.
  121. 2012/03/02 05:52:33,065 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldMDB] (Thread-0 (HornetQ-client-global-threads-1772719)) Received Message from queue: This is message 4
  122. 2012/03/02 05:52:33,065 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldMDB] (Thread-1 (HornetQ-client-global-threads-1772719)) Received Message from queue: This is message 1
  123. 2012/03/02 05:52:33,067 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldMDB] (Thread-6 (HornetQ-client-global-threads-1772719)) Received Message from queue: This is message 5
  124. 2012/03/02 05:52:33,065 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldMDB] (Thread-3 (HornetQ-client-global-threads-1772719)) Received Message from queue: This is message 3
  125. 2012/03/02 05:52:33,065 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldMDB] (Thread-2 (HornetQ-client-global-threads-1772719)) Received Message from queue: This is message 2
  126. _Note:_ You may see the following error in the log:
  127. 2014/03/17 07:50:36,231 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 4) JBAS014613: Operation ("read-resource") failed - address: ([("subsystem" => "deployment-scanner")]) - failure description: "JBAS014807: Management resource '[(\"subsystem\" => \"deployment-scanner\")]' not found"
  128. This is a benign error that occurs when the status of the deployment is checked too early in the process. This process is retried, so you can safely ignore this error.
  129. ### Delete the OpenShift Application
  130. When you are finished with the application you can delete it from OpenShift it as follows:
  131. rhc app-delete -a helloworldmdb
  132. _Note_: There is a limit to the number of applications you can deploy concurrently to OpenShift. If the `rhc app create` command returns an error indicating you have reached that limit, you must delete an existing application before you continue.
  133. * To view the list of your OpenShift applications, type: `rhc domain show`
  134. * To delete an application from OpenShift, type the following, substituting the application name you want to delete: `rhc app-delete -a APPLICATION_NAME_TO_DELETE`