What is Message Driven Bean?- A Message Driven Bean is a message consumer.
- Message-driven beans receive JMS messages and process them.
- It listens to message destination or endpoint and gets activated when a message arrives.
- The important characteristics of MDBs are that they are:
1. Stateless - not related to any specific client. 2. Server side 3. Anonymous - cannot be directly invoked by a client. 4. Concurrency - consume and process messages concurrently. 5. Transaction-aware components - process asynchronous JMS messages.
|