Spring Boot - Messaging
Given this Spring Boot code snippet:
What will be printed if a message "Book123" is sent to the 'orders' queue?
@JmsListener(destination = "orders")
public void receiveOrder(String order) {
System.out.println("Order received: " + order);
}What will be printed if a message "Book123" is sent to the 'orders' queue?
