Wednesday 21 December 2011

MDB Annotations

import javax.ejb.ActivationConfigProperty;
import javax.ejb.MessageDriven;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.TextMessage;



@MessageDriven(
 activationConfig = {
         @ActivationConfigProperty(propertyName="destinationType",propertyValue="javax.jms.Queue"),
         @ActivationConfigProperty(propertyName="destination",propertyValue="queue/myQueue")}       
)

Regards,
Vivek Mehta

No comments:

Post a Comment