Saved Bookmarks
| 1. |
How You Can Make A Method Not Transactional If The Whole Class Was Marked As Transactional? |
|
Answer» using the ANNOTATION @NotTransactional above the method's NAME in the service IMPORT grails.transaction.Transactional @Transactional using the annotation @NotTransactional above the method's name in the service Example: import grails.transaction.Transactional @Transactional |
|