1 quick question, recently I came across a new concept in java called JMS. I would like to know where it exactly applies and I have a doubt that JMS is an abstraction or an implementation. If so how would I can use this? Can any body help me in understanding this. Thanks in Advance. :)
|
JMS in specific or messaging in general is way to decouple systems. Let's say I have a service A that handles creating new accounts, and a service B that needs to be notified when new accounts are created. One way to connection these systems is using JMS; when service A creates an account, it puts an appropriate message on the JMS bus. Service B is listening on the bus and can take action when it sees the message. If a new service "C" also needs to take action, it can also just listen on the bus for that message. Service "A" doesn't need to know about services B or C. All that needs to be agreed upon by all parties is the format of the JMS message. This is a looser form of coupling than, say, service A having to explicitly contact services B & C in some way. |
|||||||
|
|
In short JMS API is Abstraction and Vendors[e.g. Sun, Apache, RedHat] comes with their implementation. If you need to know more or for any query, please feel free to ask. |
|||
|