Skip to content

Instantly share code, notes, and snippets.

@vlytsus
Created February 21, 2020 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlytsus/40be77216e65ddaabe65c890c2f34729 to your computer and use it in GitHub Desktop.
Save vlytsus/40be77216e65ddaabe65c890c2f34729 to your computer and use it in GitHub Desktop.
Spring JmsTemplate Example
private final JmsTemplate jmsTemplate;
public String sendMessage(String queueName, String payload) {
jmsTemplate.convertAndSend( queueName, payload );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment