對映到 REST 資源
如果你希望在 UrlMappings.groovy 檔案中保留 URL 對映的宣告,那麼只需刪除資源轉換的 uri 屬性並將以下行新增到 UrlMappings.groovy
就足夠了:
"/books"(resources:"book")
擴充套件你的 API 以包含更多端點然後變得微不足道:
"/books"(resources:"book") {
"/publisher"(controller:"publisher", method:"GET")
}
上面的例子將公開 URI /books/1/publisher.