如何在 grails 中设置 restful 控制器脚手架
How to set restful controller scaffold in grails
我用命令grails generate-restful-controller Domain
创建了一个restful控制器,如何在创建的控制器中设置scaffold = true
,使用模板RestfulController.groovy
您最好创建 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
希望这对您有所帮助。谢谢
我用命令grails generate-restful-controller Domain
创建了一个restful控制器,如何在创建的控制器中设置scaffold = true
,使用模板RestfulController.groovy
您最好创建 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
希望这对您有所帮助。谢谢