Skip to content

Instantly share code, notes, and snippets.

@jfridye
Created April 5, 2018 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jfridye/6a5d165fe91e77d117e27af24a5b121e to your computer and use it in GitHub Desktop.
Save jfridye/6a5d165fe91e77d117e27af24a5b121e to your computer and use it in GitHub Desktop.
class X {
@Transactional
foo() {
}
@Transactional
bar() {
// SQL stuff
}
far() {
bar();
}
}
(new X()).far()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment