Skip to content

Instantly share code, notes, and snippets.

@forketyfork
Created February 27, 2020 19:34
Show Gist options
  • Save forketyfork/e9cb951c6ca5fc1e007304b8f5a98d6b to your computer and use it in GitHub Desktop.
Save forketyfork/e9cb951c6ca5fc1e007304b8f5a98d6b to your computer and use it in GitHub Desktop.
XA with Spring Boot: XaRoute
@Component
public class XaRoute extends RouteBuilder {
@Override
public void configure() {
from("activemq:TestQueue")
.transacted("policyPropagationRequired")
.to("sql:insert into message(contents) values(:#${body})")
.log("Delay...")
.delay(10000)
.log("Delay finished, committing");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment