What is Java Message Service (JMS) for?

前端 未结 8 1974
[愿得一人]
[愿得一人] 2021-01-30 02:19

I am currently evaluating JMS and I don\'t get what I could use it for.

Currently, I believe this would be a Usecase: I want to create a SalesInvoice PDF and print it w

8条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 03:00

    I have found a very good explanation of JMS with an example.

    That is a simple chat application with JMS queues are used to communicate messages between users and messages stay in the queue if the receiver is offline.

    In this example implementation they have used

    • XSD to generate domain classes.
    • Eclipse EE as IDE.
    • JBoss as web/application server.
    • HTML/JavaScript/JQuery for UI.
    • Servlet as controller.
    • MySQL as DB.

    The JBoss configuration step for queue is explained nicely Its available at http://coder2design.com/messaging-service/

    Even the downloadable code is also available there.

提交回复
热议问题