If you are running some code in the Grails console (or shell) and get the following error: org.hibernate.LazyInitializationException: could not initialize proxy - no Session Try adding a "dummy" line to the end of your code, something like: println "done." The error is due to a lazy initialization call in Hibernate. The grails console (or [...]