Skip to content

Instantly share code, notes, and snippets.

@ondrej-kvasnovsky
Created March 20, 2012 20:30
Show Gist options
  • Save ondrej-kvasnovsky/2140982 to your computer and use it in GitHub Desktop.
Save ondrej-kvasnovsky/2140982 to your computer and use it in GitHub Desktop.
grails-vaadin example - user service
class UserService {
static transactional = true
void update(User user) {
// TODO: ... implement the logic ...
user.save(flush:true, failOnError:true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment