Theo mặc định, trình quản lý giao dịch cho chế độ ngủ đông và MySQL không bật lưu điểm.
Trong BootStrap.groovy thêm phần sau:
transactionManager.setNestedTransactionAllowed(true)
Sau đó, trong một giao dịch, bạn có thể làm như sau:
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)
}
}