Spring Consolidated JMS (i)-Basic article

Source: Internet
Author: User

  

RMI uses synchronous communication, and JMS uses asynchronous communication.

There are two main concepts in JMS: The message broker and the destination (destination).

  

  

The disadvantage of synchronous communication, which can be solved by using JMS:

      

Run Apache-activemq-5.10.0-bin[1]\apache-activemq-5.10.0\bin\win32 under Activemq.bat to start the JMS service.

In order to eliminate redundant JMS code, such as establishing a connection, exception handling, etc., we should use Jmstemplate to send and receive messages.

Similar to JdbcTemplate, Jmstemplate captures check-time exceptions, encapsulates them, and throws them in the form of non-check exceptions.

  

Code to send the message:

@Component ("Producerserviceimpl") Public classProducerserviceimplImplementsProducerservice {Privatejmstemplate jmstemplate; Public voidSendMessage (Destination Destination,FinalString message) {jmstemplate.send (destination,NewMessagecreator () { PublicMessage CreateMessage (Session session)throwsjmsexception {returnsession.createtextmessage (message);        }            }); }              Publicjmstemplate getjmstemplate () {returnjmstemplate; } @Resource Public voidsetjmstemplate (jmstemplate jmstemplate) { This. jmstemplate =jmstemplate; }}

Spring Consolidated JMS (i)-Basic article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.