1. Concurrency when using GORM in Grails stackoverflow.comLet's say I have a counter function which updates a counter using raw SQL:
|
2. How To Make Transactions Work In Grails stackoverflow.comSummary A parent can have many children. How do you write a service such that, if after adding a parent there is an error when adding a child, the entire transaction is ... |
3. Disabling locking for non-critical Grails/GORM domain classes stackoverflow.comAssume the following code in a Grails controller:
By default Grails uses ... |
4. Grails optimistic locking strange behaviour stackoverflow.comI've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update ... |
5. Grails: issue when calling a service method from other service method stackoverflow.comI have this 2 methods in the same service class: boolean meth1(DomClass dom1) { //parameter is an instance of domain class DomClass ... meth2(dom1) ... |