With Grails there are several ways to do the same thing.
Finds all of domain class instances:
Book.findAll() Book.getAll() Book.list()
Another difference between Domain.findByID(id) and Domain.get(id) is that if you're using a hibernate filter, you need to use Domain.findById(id). Domain.get(id) bypasses the filter.