Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modify and validate a grails domain object without saving it

How do I use the GORM .get to retrieve an object o, modify some fields, and call o.validate() to find errors without Hibernate saving the object to the DB. discard by itself does not prevent the save. Neither does

                clazz.withTransaction { status ->
                  row.validate(flush:false)
                  row.discard()
                  status.setRollbackOnly()
                }

This post recommend using a command object but this code will apply to many different domain object. There must be a simple way (some parameter passed to validate?) to give Hibernate the do not save instruction. Do I need to create a new instance every time?

like image 529
cardenizen Avatar asked Oct 12 '11 19:10

cardenizen


1 Answers

If you use read() instead of get() to retrieve the object it won't be auto-saved during a flush (e.g. at the end of a transaction or a web request). It's not truly read-only, since you can call save() and it will persist - it's just not going to auto-save when dirty.

like image 198
Burt Beckwith Avatar answered Sep 28 '22 22:09

Burt Beckwith