Service Usage
A service contains business logic that can be re-used across a Grails application. In Grails a service is a class that ends in the convention "Service" and lives in thegrails-app/services directory. A service can be created with the create-service command:grails create-service Book
class BookService {
Book[] getBooks() {
Book.list() as Book[]
}
}
