Hi,

I am new to spring jms..already i developed mdb which listens to websphere queue and process the message.

Now I want to convert this MDB ejb to spring based JMS listener so that i dont require ejb container.

Can any one tell me how to develop spring jms similar to mdb ejb?

In my mdb class i have the following annotations, where i can put these things in spring jms listener

@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue =
"javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue =
"jms/app/EventQueue") })
public class EventMDB implements MessageListener {

}


Thanks,