0

I am using a @JmsListener annotated method listen to JMS messages as shown below.

@JmsListener(destination = "Queue")
public void handleMessage(String message) {//implicit message type conversion
    System.out.println("received: "+message);
}

How do I convert this to Binders?

Gary Russell
  • 166,535
  • 14
  • 146
  • 179

1 Answers1

0

There is not currently a production-ready JMS binder available. There's an alpha/experimental version here supporting a limited number of brokers.

Gary Russell
  • 166,535
  • 14
  • 146
  • 179