Domyślnie menedżer transakcji dla hibernacji i MySQL nie ma włączonych punktów zapisu.
W BootStrap.groovy dodaj następujące:
transactionManager.setNestedTransactionAllowed(true)
Następnie w transakcji możesz wykonać następujące czynności:
Thing.withTransaction { status ->
//Do some work and a save
def savePoint = status.createSavepoint()
//do other work
if(checkOk)
{
//Everything worked so don't need the save point anymore
status.releaseSavepoint(savePoint)
}
else
{
//The other work did not work so rollback from it.
status.rollbackToSavepoint(savePoint)
}
}