(快速参考)

responseFormats

目的

静态定义 respond 方法所用的受支持的响应格式。

示例

class BookController {
    static responseFormats = ['xml', 'json']

    def show(Long id) {
        respond Book.get(id)
    }
}

说明

responseFormats 属性用于定义控制器和 respond 方法使用的受支持的响应格式。respond 方法使用 内容协商 响应最合适的类型。有关更多信息,请参阅 REST 支持 的文档。