Skip to content

Instantly share code, notes, and snippets.

@johndemic
Created May 22, 2012 02:41
Show Gist options
  • Save johndemic/2766208 to your computer and use it in GitHub Desktop.
Save johndemic/2766208 to your computer and use it in GitHub Desktop.
Dispatching Product Data to JMS
@RequestMapping(method = RequestMethod.POST)
public void save(@RequestBody Product product) throws Exception {
muleClient.dispatch("jms://products", product, null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment