Make the generated `BookController` extended from `RestfullController<Book>`, ```groovy import grails.rest.* @Resource(uri='/books') class Book { String title static constraints = { title blank:false } } ```