Spring Boot - Messaging
Given this Spring Boot method listening to messages:
What will be printed if a message "Order123" is sent to the "orders" queue?
@JmsListener(destination = "orders")
public void receiveOrder(String order) {
System.out.println("Received: " + order);
}What will be printed if a message "Order123" is sent to the "orders" queue?
