如何在grails中设置restful控制器脚手架

时间:2015-10-01 12:58:11

标签: grails grails-controller

我使用命令 defaultConfig { applicationId 'pkg' minSdkVersion targetSdkVersion versionCode versionName // Enable MultiDexing: https://developer.android.com/tools/building/multidex.html multiDexEnabled true } 创建了一个restful控制器,如何在创建的控制器中设置grails generate-restful-controller Domain,以使用模板RestfulController.groovy

1 个答案:

答案 0 :(得分:0)

只需运行命令:

,最好创建REST就绪控制器
$ grails generate-controller [Domain Class Name]

并按照这样做

import grails.transaction.*
import static org.springframework.http.HttpStatus.*
import static org.springframework.http.HttpMethod.*

@Transactional(readOnly = true)
 class BookController {
…
}

您也可以从grails文档中获取帮助

http://grails.github.io/grails-doc/latest/guide/webServices.html#restfulControllers

希望这会有所帮助。感谢