What is Java Message Service (JMS) for?

前端 未结 8 1967
[愿得一人]
[愿得一人] 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:12

    JMS is a message-oriented middleware.

    • Why would a need a Standalone Server for Message Processing, vs. e.g. some simple inproc processing with Quartz scheduler?

    It depends on what other components you may have. I guess. But I don't know anything about Quartz

    • How does it interact with my application?

    You send messages to the broker.

    • Isn't it much too slow?

    Compare to what ?

    • What are Usecases you already implemented successfully?

    I've used JMS to implement a SIP application server, to communicate between the various components.

提交回复
热议问题