Programming rules for creating MDB
MDB class must directly (using implements keyword) or indirectly (using annotation or descriptors) implement a message listener interface. Example, Using implements keyword Using annotation It is [...]
MDB class must directly (using implements keyword) or indirectly (using annotation or descriptors) implement a message listener interface. Example, Using implements keyword Using annotation It is [...]
@MessageDriven The @MessageDriven annotation is used to mark the class as Message-Driven Bean. This annotation’s specification is as follows. @Target(value=TYPE) @Retention(value=RUNTIME) [...]
EJB3 Message Driven Bean In this example, we are going to create an MDB which consumes the message sent to the Queue Destination and a JMS Application Client which sends the message to the Queue [...]